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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/js_emitter.dart

Issue 1299413002: Move common identifiers, names and selectors to a separate library. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 '../common.dart'; 7 import '../common.dart';
8 8
9 import '../common/names.dart' show
10 Identifiers;
11
9 import '../constants/values.dart'; 12 import '../constants/values.dart';
10 13
11 import '../closure.dart' show 14 import '../closure.dart' show
12 ClosureClassElement, 15 ClosureClassElement,
13 ClosureClassMap, 16 ClosureClassMap,
14 ClosureFieldElement, 17 ClosureFieldElement,
15 CapturedVariable; 18 CapturedVariable;
16 19
17 import '../dart_types.dart' show 20 import '../dart_types.dart' show
18 TypedefType; 21 TypedefType;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 part 'code_emitter_task.dart'; 79 part 'code_emitter_task.dart';
77 part 'helpers.dart'; 80 part 'helpers.dart';
78 part 'interceptor_stub_generator.dart'; 81 part 'interceptor_stub_generator.dart';
79 part 'main_call_stub_generator.dart'; 82 part 'main_call_stub_generator.dart';
80 part 'metadata_collector.dart'; 83 part 'metadata_collector.dart';
81 part 'native_emitter.dart'; 84 part 'native_emitter.dart';
82 part 'native_generator.dart'; 85 part 'native_generator.dart';
83 part 'parameter_stub_generator.dart'; 86 part 'parameter_stub_generator.dart';
84 part 'runtime_type_generator.dart'; 87 part 'runtime_type_generator.dart';
85 part 'type_test_registry.dart'; 88 part 'type_test_registry.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698