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

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

Issue 1212513002: sdk files reorganization to make dart2js a proper package (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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.new_js_emitter.emitter; 5 library dart2js.new_js_emitter.emitter;
6 6
7 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' show 7 import 'package:compiler_runtime/shared/embedded_names.dart' show
8 JsBuiltin, 8 JsBuiltin,
9 METADATA, 9 METADATA,
10 TYPES; 10 TYPES;
11 11
12 import '../program_builder.dart' show ProgramBuilder; 12 import '../program_builder.dart' show ProgramBuilder;
13 import '../model.dart'; 13 import '../model.dart';
14 import 'model_emitter.dart'; 14 import 'model_emitter.dart';
15 import '../../common.dart'; 15 import '../../common.dart';
16 import '../../elements/elements.dart' show FieldElement; 16 import '../../elements/elements.dart' show FieldElement;
17 import '../../js/js.dart' as js; 17 import '../../js/js.dart' as js;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 _compiler.internalError(NO_LOCATION_SPANNABLE, 191 _compiler.internalError(NO_LOCATION_SPANNABLE,
192 "Unhandled Builtin: $builtin"); 192 "Unhandled Builtin: $builtin");
193 return null; 193 return null;
194 } 194 }
195 } 195 }
196 196
197 @override 197 @override
198 void invalidateCaches() { 198 void invalidateCaches() {
199 } 199 }
200 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698