| 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( | 14 jsAst.Expression generateClassConstructor(ClassElement classElement, |
| 15 ClassElement classElement, Iterable<jsAst.Name> fields) { | 15 Iterable<jsAst.Name> fields, bool hasRtiField) { |
| 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 var typeParameters = const <jsAst.Parameter>[]; |
| 24 var typeInits = const <jsAst.Expression>[]; |
| 25 if (hasRtiField) { |
| 26 String parameterName = r'$ti'; |
| 27 typeParameters = parameterName; |
| 28 typeInits = js('this.# = #', [namer.rtiFieldName, parameterName]); |
| 29 } |
| 30 return js('function(#, #) { #; #; this.#();}', [ |
| 24 fields, | 31 fields, |
| 32 typeParameters, |
| 25 fields.map((name) => js('this.# = #', [name, name])), | 33 fields.map((name) => js('this.# = #', [name, name])), |
| 34 typeInits, |
| 26 namer.deferredAction | 35 namer.deferredAction |
| 27 ]); | 36 ]); |
| 28 } | 37 } |
| 29 | 38 |
| 30 jsAst.Expression generateGetter(Element member, jsAst.Name fieldName) { | 39 jsAst.Expression generateGetter(Element member, jsAst.Name fieldName) { |
| 31 ClassElement cls = member.enclosingClass; | 40 ClassElement cls = member.enclosingClass; |
| 32 String receiver = backend.isInterceptorClass(cls) ? 'receiver' : 'this'; | 41 String receiver = backend.isInterceptorClass(cls) ? 'receiver' : 'this'; |
| 33 List<String> args = backend.isInterceptedMethod(member) ? ['receiver'] : []; | 42 List<String> args = backend.isInterceptedMethod(member) ? ['receiver'] : []; |
| 34 return js('function(#) { return #.# }', [args, receiver, fieldName]); | 43 return js('function(#) { return #.# }', [args, receiver, fieldName]); |
| 35 } | 44 } |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 if (cache === void 0) cache = #tearOff( | 290 if (cache === void 0) cache = #tearOff( |
| 282 this, funcs, reflectionInfo, true, [], name).prototype; | 291 this, funcs, reflectionInfo, true, [], name).prototype; |
| 283 return cache; | 292 return cache; |
| 284 } | 293 } |
| 285 : tearOffGetter(funcs, reflectionInfo, name, isIntercepted); | 294 : tearOffGetter(funcs, reflectionInfo, name, isIntercepted); |
| 286 }''', | 295 }''', |
| 287 {'tearOff': tearOffAccessExpression}); | 296 {'tearOff': tearOffAccessExpression}); |
| 288 | 297 |
| 289 return <jsAst.Statement>[tearOffGetter, tearOff]; | 298 return <jsAst.Statement>[tearOffGetter, tearOff]; |
| 290 } | 299 } |
| OLD | NEW |