├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── no-response.yml │ └── publish.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── example.dart ├── example_generator.dart └── src │ ├── example_annotation.dart │ ├── example_test_golden.dart │ └── example_test_src.dart ├── lib ├── annotations.dart ├── source_gen_test.dart └── src │ ├── annotations.dart │ ├── build_log_tracking.dart │ ├── expectation_element.dart │ ├── generate_for_element.dart │ ├── init_library_reader.dart │ ├── matchers.dart │ └── test_annotated_classes.dart ├── pubspec.yaml └── test ├── build_log_tracking_test.dart ├── example_test.dart ├── generate_for_element_test.dart ├── init_library_reader_test.dart ├── src ├── goldens │ ├── test_library_file_no_part.dart │ ├── test_library_file_part_of.dart │ └── test_library_file_part_of_current.dart ├── test_annotation.dart ├── test_library.dart └── test_part.dart └── test_generator.dart /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/example/example.dart -------------------------------------------------------------------------------- /example/example_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/example/example_generator.dart -------------------------------------------------------------------------------- /example/src/example_annotation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/example/src/example_annotation.dart -------------------------------------------------------------------------------- /example/src/example_test_golden.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/example/src/example_test_golden.dart -------------------------------------------------------------------------------- /example/src/example_test_src.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/example/src/example_test_src.dart -------------------------------------------------------------------------------- /lib/annotations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/annotations.dart -------------------------------------------------------------------------------- /lib/source_gen_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/source_gen_test.dart -------------------------------------------------------------------------------- /lib/src/annotations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/annotations.dart -------------------------------------------------------------------------------- /lib/src/build_log_tracking.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/build_log_tracking.dart -------------------------------------------------------------------------------- /lib/src/expectation_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/expectation_element.dart -------------------------------------------------------------------------------- /lib/src/generate_for_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/generate_for_element.dart -------------------------------------------------------------------------------- /lib/src/init_library_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/init_library_reader.dart -------------------------------------------------------------------------------- /lib/src/matchers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/matchers.dart -------------------------------------------------------------------------------- /lib/src/test_annotated_classes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/lib/src/test_annotated_classes.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/build_log_tracking_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/build_log_tracking_test.dart -------------------------------------------------------------------------------- /test/example_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/example_test.dart -------------------------------------------------------------------------------- /test/generate_for_element_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/generate_for_element_test.dart -------------------------------------------------------------------------------- /test/init_library_reader_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/init_library_reader_test.dart -------------------------------------------------------------------------------- /test/src/goldens/test_library_file_no_part.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/goldens/test_library_file_no_part.dart -------------------------------------------------------------------------------- /test/src/goldens/test_library_file_part_of.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/goldens/test_library_file_part_of.dart -------------------------------------------------------------------------------- /test/src/goldens/test_library_file_part_of_current.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/goldens/test_library_file_part_of_current.dart -------------------------------------------------------------------------------- /test/src/test_annotation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/test_annotation.dart -------------------------------------------------------------------------------- /test/src/test_library.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/test_library.dart -------------------------------------------------------------------------------- /test/src/test_part.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/src/test_part.dart -------------------------------------------------------------------------------- /test/test_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevmoo/source_gen_test/HEAD/test/test_generator.dart --------------------------------------------------------------------------------