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: pkg/compiler/lib/src/js_emitter/js_emitter.dart

Issue 1153243003: dart2js: Use frequency of occurence to sort metadata indices. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
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:convert'; 7 import 'dart:convert';
8 import 'dart:collection' show LinkedHashMap;
8 9
9 import '../common.dart'; 10 import '../common.dart';
10 11
11 import '../constants/expressions.dart'; 12 import '../constants/expressions.dart';
12 import '../constants/values.dart'; 13 import '../constants/values.dart';
13 14
14 import '../closure.dart' show 15 import '../closure.dart' show
15 ClosureClassElement, 16 ClosureClassElement,
16 ClosureClassMap, 17 ClosureClassMap,
17 ClosureFieldElement, 18 ClosureFieldElement,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 106
106 part 'old_emitter/class_builder.dart'; 107 part 'old_emitter/class_builder.dart';
107 part 'old_emitter/class_emitter.dart'; 108 part 'old_emitter/class_emitter.dart';
108 part 'old_emitter/code_emitter_helper.dart'; 109 part 'old_emitter/code_emitter_helper.dart';
109 part 'old_emitter/container_builder.dart'; 110 part 'old_emitter/container_builder.dart';
110 part 'old_emitter/declarations.dart'; 111 part 'old_emitter/declarations.dart';
111 part 'old_emitter/emitter.dart'; 112 part 'old_emitter/emitter.dart';
112 part 'old_emitter/interceptor_emitter.dart'; 113 part 'old_emitter/interceptor_emitter.dart';
113 part 'old_emitter/nsm_emitter.dart'; 114 part 'old_emitter/nsm_emitter.dart';
114 part 'old_emitter/setup_program_builder.dart'; 115 part 'old_emitter/setup_program_builder.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698