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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 $A, 54 $A,
55 $HASH, 55 $HASH,
56 $PERIOD, 56 $PERIOD,
57 $Z, 57 $Z,
58 $a, 58 $a,
59 $z; 59 $z;
60 60
61 import '../util/uri_extras.dart' show 61 import '../util/uri_extras.dart' show
62 relativize; 62 relativize;
63 63
64 import '../dump_info.dart' as dumpInfo;
65
64 part 'class_builder.dart'; 66 part 'class_builder.dart';
65 part 'class_emitter.dart'; 67 part 'class_emitter.dart';
66 part 'code_emitter_helper.dart'; 68 part 'code_emitter_helper.dart';
67 part 'code_emitter_task.dart'; 69 part 'code_emitter_task.dart';
68 part 'container_builder.dart'; 70 part 'container_builder.dart';
69 part 'declarations.dart'; 71 part 'declarations.dart';
70 part 'helpers.dart'; 72 part 'helpers.dart';
71 part 'interceptor_emitter.dart'; 73 part 'interceptor_emitter.dart';
72 part 'metadata_emitter.dart'; 74 part 'metadata_emitter.dart';
73 part 'nsm_emitter.dart'; 75 part 'nsm_emitter.dart';
74 part 'reflection_data_parser.dart'; 76 part 'reflection_data_parser.dart';
75 part 'type_test_emitter.dart'; 77 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698