| OLD | NEW |
| 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.js_emitter.lazy_emitter; | 5 library dart2js.js_emitter.lazy_emitter; |
| 6 | 6 |
| 7 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; | 7 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; |
| 8 | 8 |
| 9 import '../../common.dart'; | 9 import '../../common.dart'; |
| 10 import '../../compiler.dart' show Compiler; | 10 import '../../compiler.dart' show Compiler; |
| 11 import '../../constants/values.dart' show ConstantValue; | 11 import '../../constants/values.dart' show ConstantValue; |
| 12 import '../../deferred_load.dart' show OutputUnit; | 12 import '../../deferred_load.dart' show OutputUnit; |
| 13 import '../../elements/elements.dart' | 13 import '../../elements/elements.dart' |
| 14 show ClassElement, Element, FieldElement, MethodElement; | 14 show ClassElement, Element, FieldElement, MethodElement; |
| 15 import '../../elements/entities.dart'; | 15 import '../../elements/entities.dart'; |
| 16 import '../../js/js.dart' as js; | 16 import '../../js/js.dart' as js; |
| 17 import '../../js_backend/js_backend.dart' show JavaScriptBackend, Namer; | 17 import '../../js_backend/js_backend.dart' show JavaScriptBackend, Namer; |
| 18 import '../../world.dart' show ClosedWorld; | 18 import '../../world.dart' show ClosedWorld; |
| 19 import '../js_emitter.dart' show CodeEmitterTask, NativeEmitter; | 19 import '../js_emitter.dart' show CodeEmitterTask, NativeEmitter; |
| 20 import '../js_emitter.dart' as emitterTask show Emitter, EmitterFactory; | 20 import '../js_emitter.dart' as emitterTask show Emitter, EmitterFactory; |
| 21 import '../model.dart'; | 21 import '../model.dart'; |
| 22 import '../program_builder/program_builder.dart' show ProgramBuilder; | 22 import '../program_builder/program_builder.dart' show ProgramBuilder; |
| 23 import 'model_emitter.dart'; | 23 import 'model_emitter.dart'; |
| 24 | 24 |
| 25 class EmitterFactory implements emitterTask.EmitterFactory { | 25 class EmitterFactory implements emitterTask.EmitterFactory { |
| 26 @override | 26 @override |
| 27 String get patchVersion => "lazy"; | |
| 28 | |
| 29 @override | |
| 30 bool get supportsReflection => false; | 27 bool get supportsReflection => false; |
| 31 | 28 |
| 32 @override | 29 @override |
| 33 Emitter createEmitter( | 30 Emitter createEmitter( |
| 34 CodeEmitterTask task, Namer namer, ClosedWorld closedWorld) { | 31 CodeEmitterTask task, Namer namer, ClosedWorld closedWorld) { |
| 35 return new Emitter(task.compiler, namer, task.nativeEmitter); | 32 return new Emitter(task.compiler, namer, task.nativeEmitter); |
| 36 } | 33 } |
| 37 } | 34 } |
| 38 | 35 |
| 39 class Emitter implements emitterTask.Emitter { | 36 class Emitter implements emitterTask.Emitter { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 reporter.internalError( | 183 reporter.internalError( |
| 187 NO_LOCATION_SPANNABLE, "Unhandled Builtin: $builtin"); | 184 NO_LOCATION_SPANNABLE, "Unhandled Builtin: $builtin"); |
| 188 return null; | 185 return null; |
| 189 } | 186 } |
| 190 } | 187 } |
| 191 | 188 |
| 192 @override | 189 @override |
| 193 // TODO(het): Generate this correctly | 190 // TODO(het): Generate this correctly |
| 194 int generatedSize(OutputUnit unit) => 0; | 191 int generatedSize(OutputUnit unit) => 0; |
| 195 } | 192 } |
| OLD | NEW |