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

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

Issue 2642063003: Use entities in class_stub_generator. (Closed)
Patch Set: Created 3 years, 11 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 '../elements/elements.dart' 7 import '../elements/elements.dart' show ClassElement, MixinApplicationElement;
8 show
9 ClassElement,
10 MixinApplicationElement;
11 8
12 export 'class_stub_generator.dart'; 9 export 'class_stub_generator.dart';
13 export 'code_emitter_task.dart'; 10 export 'code_emitter_task.dart';
14 export 'interceptor_stub_generator.dart'; 11 export 'interceptor_stub_generator.dart';
15 export 'main_call_stub_generator.dart'; 12 export 'main_call_stub_generator.dart';
16 export 'metadata_collector.dart'; 13 export 'metadata_collector.dart';
17 export 'native_emitter.dart'; 14 export 'native_emitter.dart';
18 export 'native_generator.dart'; 15 export 'native_generator.dart';
19 export 'parameter_stub_generator.dart'; 16 export 'parameter_stub_generator.dart';
20 export 'runtime_type_generator.dart'; 17 export 'runtime_type_generator.dart';
21 export 'type_test_registry.dart'; 18 export 'type_test_registry.dart';
22 19
23 part 'helpers.dart'; 20 part 'helpers.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698