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

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

Issue 2595493002: Merge CoreTypes and CoreClasses into CommonElements. (Closed)
Patch Set: Updated cf. comment Created 3 years, 12 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 'package:js_ast/src/precedence.dart' as js_precedence; 7 import 'package:js_ast/src/precedence.dart' as js_precedence;
8 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; 8 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames;
9 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; 9 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin;
10 10
11 import '../closure.dart' 11 import '../closure.dart'
12 show ClosureClassElement, ClosureClassMap, ClosureFieldElement; 12 show ClosureClassElement, ClosureClassMap, ClosureFieldElement;
13 import '../common.dart'; 13 import '../common.dart';
14 import '../common/names.dart' show Identifiers; 14 import '../common/names.dart' show Identifiers;
15 import '../common/tasks.dart' show CompilerTask; 15 import '../common/tasks.dart' show CompilerTask;
16 import '../compiler.dart' show Compiler; 16 import '../compiler.dart' show Compiler;
17 import '../constants/values.dart'; 17 import '../constants/values.dart';
18 import '../core_types.dart' show CoreClasses; 18 import '../core_types.dart' show CommonElements;
19 import '../dart_types.dart' 19 import '../dart_types.dart'
20 show 20 show
21 DartType, 21 DartType,
22 FunctionType, 22 FunctionType,
23 InterfaceType, 23 InterfaceType,
24 TypedefType, 24 TypedefType,
25 Types, 25 Types,
26 TypeVariableType; 26 TypeVariableType;
27 import '../deferred_load.dart' show OutputUnit; 27 import '../deferred_load.dart' show OutputUnit;
28 import '../elements/elements.dart' 28 import '../elements/elements.dart'
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 part 'code_emitter_task.dart'; 70 part 'code_emitter_task.dart';
71 part 'helpers.dart'; 71 part 'helpers.dart';
72 part 'interceptor_stub_generator.dart'; 72 part 'interceptor_stub_generator.dart';
73 part 'main_call_stub_generator.dart'; 73 part 'main_call_stub_generator.dart';
74 part 'metadata_collector.dart'; 74 part 'metadata_collector.dart';
75 part 'native_emitter.dart'; 75 part 'native_emitter.dart';
76 part 'native_generator.dart'; 76 part 'native_generator.dart';
77 part 'parameter_stub_generator.dart'; 77 part 'parameter_stub_generator.dart';
78 part 'runtime_type_generator.dart'; 78 part 'runtime_type_generator.dart';
79 part 'type_test_registry.dart'; 79 part 'type_test_registry.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698