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

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

Issue 1092263002: dart2js: add type arguments to constructor in case the class needs rti. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 5 years, 7 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/old_emitter/setup_program_builder.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 part of dart2js.js_emitter; 5 part of dart2js.js_emitter;
6 6
7 class ClassStubGenerator { 7 class ClassStubGenerator {
8 final Namer namer; 8 final Namer namer;
9 final Compiler compiler; 9 final Compiler compiler;
10 final JavaScriptBackend backend; 10 final JavaScriptBackend backend;
11 11
12 ClassStubGenerator(this.compiler, this.namer, this.backend); 12 ClassStubGenerator(this.compiler, this.namer, this.backend);
13 13
14 jsAst.Expression generateClassConstructor(ClassElement classElement, 14 jsAst.Expression generateClassConstructor(ClassElement classElement,
15 Iterable<String> fields) { 15 Iterable<String> fields) {
16 // TODO(sra): Implement placeholders in VariableDeclaration position: 16 // TODO(sra): Implement placeholders in VariableDeclaration position:
17 // 17 //
18 // String constructorName = namer.getNameOfClass(classElement); 18 // String constructorName = namer.getNameOfClass(classElement);
19 // return js.statement('function #(#) { #; }', 19 // return js.statement('function #(#) { #; }',
20 // [ constructorName, fields, 20 // [ constructorName, fields,
21 // fields.map( 21 // fields.map(
22 // (name) => js('this.# = #', [name, name]))])); 22 // (name) => js('this.# = #', [name, name]))]));
23 return js('function(#) { #; this.#();}', 23 return js('''function(#, typeInfo) {
24 [fields, 24 #;
25 fields.map((name) => js('this.# = #', [name, name])), 25 if (typeInfo) this.\$builtinTypeInfo = typeInfo;
26 namer.deferredAction]); 26 this.#();
27 }''',
28 [fields,
29 fields.map((name) => js('this.# = #', [name, name])),
30 namer.deferredAction]);
27 } 31 }
28 32
29 jsAst.Expression generateGetter(Element member, String fieldName) { 33 jsAst.Expression generateGetter(Element member, String fieldName) {
30 ClassElement cls = member.enclosingClass; 34 ClassElement cls = member.enclosingClass;
31 String receiver = backend.isInterceptorClass(cls) ? 'receiver' : 'this'; 35 String receiver = backend.isInterceptorClass(cls) ? 'receiver' : 'this';
32 List<String> args = backend.isInterceptedMethod(member) ? ['receiver'] : []; 36 List<String> args = backend.isInterceptedMethod(member) ? ['receiver'] : [];
33 return js('function(#) { return #.# }', [args, receiver, fieldName]); 37 return js('function(#) { return #.# }', [args, receiver, fieldName]);
34 } 38 }
35 39
36 jsAst.Expression generateSetter(Element member, String fieldName) { 40 jsAst.Expression generateSetter(Element member, String fieldName) {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 ? function() { 283 ? function() {
280 if (cache === void 0) cache = #tearOff( 284 if (cache === void 0) cache = #tearOff(
281 this, funcs, reflectionInfo, true, [], name).prototype; 285 this, funcs, reflectionInfo, true, [], name).prototype;
282 return cache; 286 return cache;
283 } 287 }
284 : tearOffGetter(funcs, reflectionInfo, name, isIntercepted); 288 : tearOffGetter(funcs, reflectionInfo, name, isIntercepted);
285 }''', {'tearOff': tearOffAccessExpression}); 289 }''', {'tearOff': tearOffAccessExpression});
286 290
287 return <jsAst.Statement>[tearOffGetter, tearOff]; 291 return <jsAst.Statement>[tearOffGetter, tearOff];
288 } 292 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/old_emitter/setup_program_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698