Chromium Code Reviews| 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 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; |
|
herhut
2015/04/20 10:24:29
Why not set this unconditionally? Then the instanc
zarah
2015/04/20 12:34:50
There is code depending on whether or not that pro
| |
| 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 Loading... | |
| 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 } |
| OLD | NEW |