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

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

Issue 1348063002: Make the universe parts into small libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 9 import '../common/names.dart' show
10 Identifiers; 10 Identifiers;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 TypeVariableHandler; 54 TypeVariableHandler;
55 55
56 import 'model.dart'; 56 import 'model.dart';
57 import 'program_builder/program_builder.dart'; 57 import 'program_builder/program_builder.dart';
58 58
59 import 'full_emitter/emitter.dart' as full_js_emitter; 59 import 'full_emitter/emitter.dart' as full_js_emitter;
60 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; 60 import 'lazy_emitter/emitter.dart' as lazy_js_emitter;
61 import 'startup_emitter/emitter.dart' as startup_js_emitter; 61 import 'startup_emitter/emitter.dart' as startup_js_emitter;
62 62
63 import '../universe/universe.dart' show 63 import '../universe/universe.dart' show
64 ReceiverMaskSet, 64 ReceiverMaskSet;
65 TypedSelector;
66 65
67 import '../util/util.dart' show 66 import '../util/util.dart' show
68 Setlet; 67 Setlet;
69 68
70 import '../deferred_load.dart' show 69 import '../deferred_load.dart' show
71 OutputUnit; 70 OutputUnit;
72 71
73 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; 72 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames;
74 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; 73 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin;
75 74
76 import '../native/native.dart' as native; 75 import '../native/native.dart' as native;
77 76
78 part 'class_stub_generator.dart'; 77 part 'class_stub_generator.dart';
79 part 'code_emitter_task.dart'; 78 part 'code_emitter_task.dart';
80 part 'helpers.dart'; 79 part 'helpers.dart';
81 part 'interceptor_stub_generator.dart'; 80 part 'interceptor_stub_generator.dart';
82 part 'main_call_stub_generator.dart'; 81 part 'main_call_stub_generator.dart';
83 part 'metadata_collector.dart'; 82 part 'metadata_collector.dart';
84 part 'native_emitter.dart'; 83 part 'native_emitter.dart';
85 part 'native_generator.dart'; 84 part 'native_generator.dart';
86 part 'parameter_stub_generator.dart'; 85 part 'parameter_stub_generator.dart';
87 part 'runtime_type_generator.dart'; 86 part 'runtime_type_generator.dart';
88 part 'type_test_registry.dart'; 87 part 'type_test_registry.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698