Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Unified Diff: pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart

Issue 2880443006: Generate common types into a separate library (Closed)
Patch Set: add missed files Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart
diff --git a/pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart b/pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart
index 2da079c677f5920da3f775517a0d2491d7d5fc73..ddc730fbb5765e505d09294635805daa0698871a 100644
--- a/pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart
+++ b/pkg/analyzer_plugin/tool/spec/codegen_inttest_methods.dart
@@ -111,6 +111,11 @@ class CodegenInttestMethodsVisitor extends DartCodegenVisitor
writeln();
writeln("import 'integration_tests.dart';");
writeln("import 'protocol_matchers.dart';");
+ for (String uri in api.types.importUris) {
+ write("import '");
+ write(uri);
+ writeln("';");
+ }
writeln();
writeln('/**');
writeln(' * Convenience methods for running integration tests');
« no previous file with comments | « pkg/analyzer_plugin/tool/spec/codegen_dart_protocol.dart ('k') | pkg/analyzer_plugin/tool/spec/codegen_protocol_common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698