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

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

Issue 1229923005: dart2js: support tear-offs in the startup emitter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix bad assert. Created 5 years, 4 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.startup_emitter; 5 library dart2js.js_emitter.startup_emitter;
6 6
7 import 'package:js_runtime/shared/embedded_names.dart' show 7 import 'package:js_runtime/shared/embedded_names.dart' show
8 JsBuiltin, 8 JsBuiltin,
9 METADATA, 9 METADATA,
10 TYPES; 10 TYPES;
(...skipping 24 matching lines...) Expand all
35 final ModelEmitter _emitter; 35 final ModelEmitter _emitter;
36 36
37 JavaScriptBackend get _backend => _compiler.backend; 37 JavaScriptBackend get _backend => _compiler.backend;
38 38
39 Emitter(Compiler compiler, Namer namer, NativeEmitter nativeEmitter) 39 Emitter(Compiler compiler, Namer namer, NativeEmitter nativeEmitter)
40 : this._compiler = compiler, 40 : this._compiler = compiler,
41 this.namer = namer, 41 this.namer = namer,
42 _emitter = new ModelEmitter(compiler, namer, nativeEmitter); 42 _emitter = new ModelEmitter(compiler, namer, nativeEmitter);
43 43
44 @override 44 @override
45 String get patchVersion => "startup";
46
47 @override
45 int emitProgram(ProgramBuilder programBuilder) { 48 int emitProgram(ProgramBuilder programBuilder) {
46 Program program = programBuilder.buildProgram(); 49 Program program = programBuilder.buildProgram();
47 return _emitter.emitProgram(program); 50 return _emitter.emitProgram(program);
48 } 51 }
49 52
50 @override 53 @override
51 bool get supportsReflection => false; 54 bool get supportsReflection => false;
52 55
53 @override 56 @override
54 bool isConstantInlinedOrAlreadyEmitted(ConstantValue constant) { 57 bool isConstantInlinedOrAlreadyEmitted(ConstantValue constant) {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 _compiler.internalError(NO_LOCATION_SPANNABLE, 179 _compiler.internalError(NO_LOCATION_SPANNABLE,
177 "Unhandled Builtin: $builtin"); 180 "Unhandled Builtin: $builtin");
178 return null; 181 return null;
179 } 182 }
180 } 183 }
181 184
182 @override 185 @override
183 void invalidateCaches() { 186 void invalidateCaches() {
184 } 187 }
185 } 188 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/model.dart ('k') | pkg/compiler/lib/src/js_emitter/startup_emitter/fragment_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698