Chromium Code Reviews| 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'; |