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

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

Issue 1394213002: Split RuntimesTypes into RuntimeTypes and RuntimeTypesEncoder (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 2 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 import '../js_backend/js_backend.dart' show 43 import '../js_backend/js_backend.dart' show
44 CheckedModeHelper, 44 CheckedModeHelper,
45 CompoundName, 45 CompoundName,
46 ConstantEmitter, 46 ConstantEmitter,
47 CustomElementsAnalysis, 47 CustomElementsAnalysis,
48 GetterName, 48 GetterName,
49 JavaScriptBackend, 49 JavaScriptBackend,
50 JavaScriptConstantCompiler, 50 JavaScriptConstantCompiler,
51 Namer, 51 Namer,
52 RuntimeTypes, 52 RuntimeTypes,
53 RuntimeTypesEncoder,
53 SetterName, 54 SetterName,
54 Substitution, 55 Substitution,
55 TypeCheck, 56 TypeCheck,
56 TypeChecks, 57 TypeChecks,
57 TypeVariableHandler; 58 TypeVariableHandler;
58 59
59 import 'model.dart'; 60 import 'model.dart';
60 import 'program_builder/program_builder.dart'; 61 import 'program_builder/program_builder.dart';
61 62
62 import 'full_emitter/emitter.dart' as full_js_emitter; 63 import 'full_emitter/emitter.dart' as full_js_emitter;
(...skipping 18 matching lines...) Expand all
81 part 'code_emitter_task.dart'; 82 part 'code_emitter_task.dart';
82 part 'helpers.dart'; 83 part 'helpers.dart';
83 part 'interceptor_stub_generator.dart'; 84 part 'interceptor_stub_generator.dart';
84 part 'main_call_stub_generator.dart'; 85 part 'main_call_stub_generator.dart';
85 part 'metadata_collector.dart'; 86 part 'metadata_collector.dart';
86 part 'native_emitter.dart'; 87 part 'native_emitter.dart';
87 part 'native_generator.dart'; 88 part 'native_generator.dart';
88 part 'parameter_stub_generator.dart'; 89 part 'parameter_stub_generator.dart';
89 part 'runtime_type_generator.dart'; 90 part 'runtime_type_generator.dart';
90 part 'type_test_registry.dart'; 91 part 'type_test_registry.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698