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

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

Issue 869513003: dart2js: Move metadata from old_emitter to shared directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
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 'dart:convert'; 7 import 'dart:convert';
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 26 matching lines...) Expand all
37 import '../js/js.dart' show 37 import '../js/js.dart' show
38 js; 38 js;
39 39
40 import '../js_backend/js_backend.dart' show 40 import '../js_backend/js_backend.dart' show
41 CheckedModeHelper, 41 CheckedModeHelper,
42 ConstantEmitter, 42 ConstantEmitter,
43 CustomElementsAnalysis, 43 CustomElementsAnalysis,
44 JavaScriptBackend, 44 JavaScriptBackend,
45 JavaScriptConstantCompiler, 45 JavaScriptConstantCompiler,
46 Namer, 46 Namer,
47 NativeEmitter,
48 RuntimeTypes, 47 RuntimeTypes,
49 Substitution, 48 Substitution,
50 TypeCheck, 49 TypeCheck,
51 TypeChecks, 50 TypeChecks,
52 TypeVariableHandler; 51 TypeVariableHandler;
53 52
54 import 'model.dart'; 53 import 'model.dart';
55 import 'program_builder.dart'; 54 import 'program_builder.dart';
56 55
57 import 'new_emitter/emitter.dart' as new_js_emitter; 56 import 'new_emitter/emitter.dart' as new_js_emitter;
(...skipping 28 matching lines...) Expand all
86 OutputUnit; 85 OutputUnit;
87 86
88 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' 87 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'
89 as embeddedNames; 88 as embeddedNames;
90 89
91 import '../native/native.dart' as native; 90 import '../native/native.dart' as native;
92 part 'class_stub_generator.dart'; 91 part 'class_stub_generator.dart';
93 part 'code_emitter_task.dart'; 92 part 'code_emitter_task.dart';
94 part 'helpers.dart'; 93 part 'helpers.dart';
95 part 'interceptor_stub_generator.dart'; 94 part 'interceptor_stub_generator.dart';
95 part 'metadata_emitter.dart';
96 part 'native_emitter.dart'; 96 part 'native_emitter.dart';
97 part 'native_generator.dart'; 97 part 'native_generator.dart';
98 part 'type_test_generator.dart'; 98 part 'type_test_generator.dart';
99 part 'type_test_registry.dart'; 99 part 'type_test_registry.dart';
100 100
101 part 'old_emitter/class_builder.dart'; 101 part 'old_emitter/class_builder.dart';
102 part 'old_emitter/class_emitter.dart'; 102 part 'old_emitter/class_emitter.dart';
103 part 'old_emitter/code_emitter_helper.dart'; 103 part 'old_emitter/code_emitter_helper.dart';
104 part 'old_emitter/container_builder.dart'; 104 part 'old_emitter/container_builder.dart';
105 part 'old_emitter/declarations.dart'; 105 part 'old_emitter/declarations.dart';
106 part 'old_emitter/emitter.dart'; 106 part 'old_emitter/emitter.dart';
107 part 'old_emitter/interceptor_emitter.dart'; 107 part 'old_emitter/interceptor_emitter.dart';
108 part 'old_emitter/metadata_emitter.dart';
109 part 'old_emitter/nsm_emitter.dart'; 108 part 'old_emitter/nsm_emitter.dart';
110 part 'old_emitter/reflection_data_parser.dart'; 109 part 'old_emitter/reflection_data_parser.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698