├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _README.adoc ├── analysis_options.yaml ├── example ├── bin │ ├── main.dart │ ├── main.g.dart │ ├── models.dart │ └── models.g.dart ├── pubspec.yaml └── test │ ├── simple_test.dart │ └── simple_test.g.dart ├── lib ├── annotations.dart ├── builder.dart ├── built_mirrors.dart ├── init_mirrors_generator.dart ├── mirrors_generator.dart └── scanners.dart ├── pubspec.yaml └── test ├── generics_test.dart ├── generics_test.g.dart ├── init_class_mirrors_test.dart ├── init_class_mirrors_test.g.dart ├── mirrors_test.dart ├── mirrors_test.g.dart ├── models ├── course.dart ├── course.g.dart ├── employee.dart ├── employee.g.dart ├── models.dart ├── person.dart ├── person.g.dart ├── student.dart └── student.g.dart ├── scanners ├── GetFieldsAnnotatedWith_test.dart ├── GetFieldsAnnotatedWith_test.g.dart ├── GetMethodsAnnotatedWith_test.dart ├── GetMethodsAnnotatedWith_test.g.dart ├── GetPublicMembers_test.dart ├── GetPublicMembers_test.g.dart ├── Is_test.dart ├── Is_test.g.dart ├── getObjectThatExtend_test.dart └── getObjectThatExtend_test.g.dart ├── serialized_named_test.dart └── serialized_named_test.g.dart /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/README.md -------------------------------------------------------------------------------- /_README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/_README.adoc -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/bin/main.dart -------------------------------------------------------------------------------- /example/bin/main.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/bin/main.g.dart -------------------------------------------------------------------------------- /example/bin/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/bin/models.dart -------------------------------------------------------------------------------- /example/bin/models.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/bin/models.g.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/simple_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/test/simple_test.dart -------------------------------------------------------------------------------- /example/test/simple_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/example/test/simple_test.g.dart -------------------------------------------------------------------------------- /lib/annotations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/annotations.dart -------------------------------------------------------------------------------- /lib/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/builder.dart -------------------------------------------------------------------------------- /lib/built_mirrors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/built_mirrors.dart -------------------------------------------------------------------------------- /lib/init_mirrors_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/init_mirrors_generator.dart -------------------------------------------------------------------------------- /lib/mirrors_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/mirrors_generator.dart -------------------------------------------------------------------------------- /lib/scanners.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/lib/scanners.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/generics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/generics_test.dart -------------------------------------------------------------------------------- /test/generics_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/generics_test.g.dart -------------------------------------------------------------------------------- /test/init_class_mirrors_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/init_class_mirrors_test.dart -------------------------------------------------------------------------------- /test/init_class_mirrors_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/init_class_mirrors_test.g.dart -------------------------------------------------------------------------------- /test/mirrors_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/mirrors_test.dart -------------------------------------------------------------------------------- /test/mirrors_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/mirrors_test.g.dart -------------------------------------------------------------------------------- /test/models/course.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/course.dart -------------------------------------------------------------------------------- /test/models/course.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/course.g.dart -------------------------------------------------------------------------------- /test/models/employee.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/employee.dart -------------------------------------------------------------------------------- /test/models/employee.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/employee.g.dart -------------------------------------------------------------------------------- /test/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/models.dart -------------------------------------------------------------------------------- /test/models/person.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/person.dart -------------------------------------------------------------------------------- /test/models/person.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/person.g.dart -------------------------------------------------------------------------------- /test/models/student.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/student.dart -------------------------------------------------------------------------------- /test/models/student.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/models/student.g.dart -------------------------------------------------------------------------------- /test/scanners/GetFieldsAnnotatedWith_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetFieldsAnnotatedWith_test.dart -------------------------------------------------------------------------------- /test/scanners/GetFieldsAnnotatedWith_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetFieldsAnnotatedWith_test.g.dart -------------------------------------------------------------------------------- /test/scanners/GetMethodsAnnotatedWith_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetMethodsAnnotatedWith_test.dart -------------------------------------------------------------------------------- /test/scanners/GetMethodsAnnotatedWith_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetMethodsAnnotatedWith_test.g.dart -------------------------------------------------------------------------------- /test/scanners/GetPublicMembers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetPublicMembers_test.dart -------------------------------------------------------------------------------- /test/scanners/GetPublicMembers_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/GetPublicMembers_test.g.dart -------------------------------------------------------------------------------- /test/scanners/Is_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/Is_test.dart -------------------------------------------------------------------------------- /test/scanners/Is_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/Is_test.g.dart -------------------------------------------------------------------------------- /test/scanners/getObjectThatExtend_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/getObjectThatExtend_test.dart -------------------------------------------------------------------------------- /test/scanners/getObjectThatExtend_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/scanners/getObjectThatExtend_test.g.dart -------------------------------------------------------------------------------- /test/serialized_named_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/serialized_named_test.dart -------------------------------------------------------------------------------- /test/serialized_named_test.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-league/built_mirrors/HEAD/test/serialized_named_test.g.dart --------------------------------------------------------------------------------