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

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

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 '../common.dart'; 7 import '../common.dart';
8 8
9 import '../constants/expressions.dart'; 9 import '../constants/expressions.dart';
10 import '../constants/values.dart'; 10 import '../constants/values.dart';
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 import '../util/uri_extras.dart' show 76 import '../util/uri_extras.dart' show
77 relativize; 77 relativize;
78 78
79 import '../util/util.dart' show 79 import '../util/util.dart' show
80 equalElements; 80 equalElements;
81 81
82 import '../deferred_load.dart' show 82 import '../deferred_load.dart' show
83 OutputUnit; 83 OutputUnit;
84 84
85 import '../../js_lib/shared/runtime_data.dart' as encoding; 85 import 'package:_internal/compiler/js_lib/shared/runtime_data.dart' as encoding;
86 import '../../js_lib/shared/embedded_names.dart' as embeddedNames; 86 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'
87 as embeddedNames;
87 88
88 import '../hash/sha1.dart'; 89 import '../hash/sha1.dart';
89 90
90 part 'class_stub_generator.dart'; 91 part 'class_stub_generator.dart';
91 part 'code_emitter_task.dart'; 92 part 'code_emitter_task.dart';
92 part 'helpers.dart'; 93 part 'helpers.dart';
93 part 'interceptor_stub_generator.dart'; 94 part 'interceptor_stub_generator.dart';
94 95
95 part 'old_emitter/class_builder.dart'; 96 part 'old_emitter/class_builder.dart';
96 part 'old_emitter/class_emitter.dart'; 97 part 'old_emitter/class_emitter.dart';
97 part 'old_emitter/code_emitter_helper.dart'; 98 part 'old_emitter/code_emitter_helper.dart';
98 part 'old_emitter/container_builder.dart'; 99 part 'old_emitter/container_builder.dart';
99 part 'old_emitter/declarations.dart'; 100 part 'old_emitter/declarations.dart';
100 part 'old_emitter/emitter.dart'; 101 part 'old_emitter/emitter.dart';
101 part 'old_emitter/interceptor_emitter.dart'; 102 part 'old_emitter/interceptor_emitter.dart';
102 part 'old_emitter/metadata_emitter.dart'; 103 part 'old_emitter/metadata_emitter.dart';
103 part 'old_emitter/nsm_emitter.dart'; 104 part 'old_emitter/nsm_emitter.dart';
104 part 'old_emitter/reflection_data_parser.dart'; 105 part 'old_emitter/reflection_data_parser.dart';
105 part 'old_emitter/type_test_emitter.dart'; 106 part 'old_emitter/type_test_emitter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/interceptor_stub_generator.dart ('k') | pkg/compiler/lib/src/js_emitter/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698