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

Unified Diff: sdk/lib/_internal/compiler/implementation/dart2jslib.dart

Issue 90713003: Dart2js option to dump info about compilation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: sdk/lib/_internal/compiler/implementation/dart2jslib.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart2jslib.dart b/sdk/lib/_internal/compiler/implementation/dart2jslib.dart
index ca186dca5f027c837a77e5c754bc0f04ce615156..8ad340ef5faa7cd2a6800463a1fe34881866473a 100644
--- a/sdk/lib/_internal/compiler/implementation/dart2jslib.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart2jslib.dart
@@ -6,6 +6,7 @@ library dart2js;
import 'dart:async';
import 'dart:collection' show Queue;
+import 'dart:convert';
ahe 2013/11/27 19:28:53 I'm pretty sure it is not appropriate to include t
sigurdm 2013/11/29 10:39:37 Done.
import 'closure.dart' as closureMapping;
import 'dart_backend/dart_backend.dart' as dart_backend;
@@ -35,6 +36,7 @@ import 'source_file.dart' show SourceFile;
import 'js/js.dart' as js;
import 'deferred_load.dart' show DeferredLoadTask;
import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
+import 'dart2js.dart' as commandline;
ahe 2013/11/27 19:28:53 You cannot include this library. The dart2js comm
sigurdm 2013/11/29 10:39:37 Done.
export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
export 'scanner/scannerlib.dart' show isUserDefinableOperator,
@@ -47,6 +49,7 @@ export 'universe/universe.dart' show Selector, TypedSelector;
part 'code_buffer.dart';
part 'compile_time_constants.dart';
part 'compiler.dart';
+part 'dump_info.dart';
part 'constants.dart';
part 'constant_system.dart';
part 'constant_system_dart.dart';

Powered by Google App Engine
This is Rietveld 408576698