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

Side by Side 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 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dart2js; 5 library dart2js;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection' show Queue; 8 import 'dart:collection' show Queue;
9 9
10 import 'closure.dart' as closureMapping; 10 import 'closure.dart' as closureMapping;
(...skipping 17 matching lines...) Expand all
28 import 'util/util.dart'; 28 import 'util/util.dart';
29 import 'util/characters.dart' show $_; 29 import 'util/characters.dart' show $_;
30 import '../compiler.dart' as api; 30 import '../compiler.dart' as api;
31 import 'patch_parser.dart'; 31 import 'patch_parser.dart';
32 import 'types/types.dart' as ti; 32 import 'types/types.dart' as ti;
33 import 'resolution/resolution.dart'; 33 import 'resolution/resolution.dart';
34 import 'source_file.dart' show SourceFile; 34 import 'source_file.dart' show SourceFile;
35 import 'js/js.dart' as js; 35 import 'js/js.dart' as js;
36 import 'deferred_load.dart' show DeferredLoadTask; 36 import 'deferred_load.dart' show DeferredLoadTask;
37 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; 37 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
38 import 'dump_info.dart';
38 39
39 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; 40 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
40 export 'scanner/scannerlib.dart' show isUserDefinableOperator, 41 export 'scanner/scannerlib.dart' show isUserDefinableOperator,
41 isUnaryOperator, 42 isUnaryOperator,
42 isBinaryOperator, 43 isBinaryOperator,
43 isTernaryOperator, 44 isTernaryOperator,
44 isMinusOperator; 45 isMinusOperator;
45 export 'universe/universe.dart' show Selector, TypedSelector; 46 export 'universe/universe.dart' show Selector, TypedSelector;
46 47
47 part 'code_buffer.dart'; 48 part 'code_buffer.dart';
48 part 'compile_time_constants.dart'; 49 part 'compile_time_constants.dart';
49 part 'compiler.dart'; 50 part 'compiler.dart';
50 part 'constants.dart'; 51 part 'constants.dart';
51 part 'constant_system.dart'; 52 part 'constant_system.dart';
52 part 'constant_system_dart.dart'; 53 part 'constant_system_dart.dart';
53 part 'diagnostic_listener.dart'; 54 part 'diagnostic_listener.dart';
54 part 'enqueue.dart'; 55 part 'enqueue.dart';
55 part 'library_loader.dart'; 56 part 'library_loader.dart';
56 part 'resolved_visitor.dart'; 57 part 'resolved_visitor.dart';
57 part 'script.dart'; 58 part 'script.dart';
58 part 'tree_validator.dart'; 59 part 'tree_validator.dart';
59 part 'typechecker.dart'; 60 part 'typechecker.dart';
60 part 'warnings.dart'; 61 part 'warnings.dart';
61 part 'world.dart'; 62 part 'world.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698