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

Unified Diff: pkg/analyzer/tool/summary/generate.dart

Issue 2875373002: Move flat_buffer and api_signature into front_end. (Closed)
Patch Set: Update summary format generator. 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
« no previous file with comments | « pkg/analyzer/test/src/summary/test_all.dart ('k') | pkg/front_end/lib/src/base/api_signature.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/tool/summary/generate.dart
diff --git a/pkg/analyzer/tool/summary/generate.dart b/pkg/analyzer/tool/summary/generate.dart
index e6e86f3cb0c6f6f609fb6850f2f06c73d12436e7..d7c51466bea9e3ef60f53bcb5baea75f912be64f 100644
--- a/pkg/analyzer/tool/summary/generate.dart
+++ b/pkg/analyzer/tool/summary/generate.dart
@@ -433,10 +433,12 @@ class _CodeGenerator {
outputHeader();
out('library analyzer.src.summary.format;');
out();
- out("import 'flat_buffers.dart' as fb;");
- out("import 'idl.dart' as idl;");
out("import 'dart:convert' as convert;");
- out("import 'api_signature.dart' as api_sig;");
+ out();
+ out("import 'package:front_end/src/base/api_signature.dart' as api_sig;");
+ out("import 'package:front_end/src/base/flat_buffers.dart' as fb;");
+ out();
+ out("import 'idl.dart' as idl;");
out();
for (idlModel.EnumDeclaration enm in _idl.enums.values) {
_generateEnumReader(enm);
« no previous file with comments | « pkg/analyzer/test/src/summary/test_all.dart ('k') | pkg/front_end/lib/src/base/api_signature.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698