├── .gitignore ├── README.md ├── test_plugin ├── .dart_tool │ ├── package_config.json │ └── pub │ │ └── bin │ │ └── test │ │ └── test.dart.snapshot.dart2 ├── .packages ├── assets_test │ └── test1.dart ├── lib │ ├── cli │ │ └── cli_utils.dart │ ├── logger │ │ └── log.dart │ ├── mirror_plugin.dart │ ├── mirror_visitor.dart │ ├── starter.dart │ └── utils │ │ └── map_utils.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── analyzer_test.dart └── tools │ └── analyzer_plugin │ ├── .dart_tool │ └── package_config.json │ ├── .packages │ ├── bin │ └── plugin.dart │ ├── pubspec.lock │ └── pubspec.yaml └── test_project ├── .dart_tool └── package_config.json ├── .packages ├── analysis_options.yaml ├── lib └── main.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/README.md -------------------------------------------------------------------------------- /test_plugin/.dart_tool/package_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/.dart_tool/package_config.json -------------------------------------------------------------------------------- /test_plugin/.dart_tool/pub/bin/test/test.dart.snapshot.dart2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/.dart_tool/pub/bin/test/test.dart.snapshot.dart2 -------------------------------------------------------------------------------- /test_plugin/.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/.packages -------------------------------------------------------------------------------- /test_plugin/assets_test/test1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/assets_test/test1.dart -------------------------------------------------------------------------------- /test_plugin/lib/cli/cli_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/cli/cli_utils.dart -------------------------------------------------------------------------------- /test_plugin/lib/logger/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/logger/log.dart -------------------------------------------------------------------------------- /test_plugin/lib/mirror_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/mirror_plugin.dart -------------------------------------------------------------------------------- /test_plugin/lib/mirror_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/mirror_visitor.dart -------------------------------------------------------------------------------- /test_plugin/lib/starter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/starter.dart -------------------------------------------------------------------------------- /test_plugin/lib/utils/map_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/lib/utils/map_utils.dart -------------------------------------------------------------------------------- /test_plugin/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/pubspec.lock -------------------------------------------------------------------------------- /test_plugin/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/pubspec.yaml -------------------------------------------------------------------------------- /test_plugin/test/analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/test/analyzer_test.dart -------------------------------------------------------------------------------- /test_plugin/tools/analyzer_plugin/.dart_tool/package_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/tools/analyzer_plugin/.dart_tool/package_config.json -------------------------------------------------------------------------------- /test_plugin/tools/analyzer_plugin/.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/tools/analyzer_plugin/.packages -------------------------------------------------------------------------------- /test_plugin/tools/analyzer_plugin/bin/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/tools/analyzer_plugin/bin/plugin.dart -------------------------------------------------------------------------------- /test_plugin/tools/analyzer_plugin/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/tools/analyzer_plugin/pubspec.lock -------------------------------------------------------------------------------- /test_plugin/tools/analyzer_plugin/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_plugin/tools/analyzer_plugin/pubspec.yaml -------------------------------------------------------------------------------- /test_project/.dart_tool/package_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/.dart_tool/package_config.json -------------------------------------------------------------------------------- /test_project/.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/.packages -------------------------------------------------------------------------------- /test_project/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/analysis_options.yaml -------------------------------------------------------------------------------- /test_project/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/lib/main.dart -------------------------------------------------------------------------------- /test_project/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/pubspec.lock -------------------------------------------------------------------------------- /test_project/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdw09/dart_analyzer_plugin_demo/HEAD/test_project/pubspec.yaml --------------------------------------------------------------------------------