| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 js_backend; | 5 part of js_backend; |
| 6 | 6 |
| 7 typedef void Recompile(Element element); | 7 typedef void Recompile(Element element); |
| 8 | 8 |
| 9 class ReturnInfo { | 9 class ReturnInfo { |
| 10 HType returnType; | 10 HType returnType; |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 return compiler.findHelper(const SourceString('makeLiteralMap')); | 1196 return compiler.findHelper(const SourceString('makeLiteralMap')); |
| 1197 } | 1197 } |
| 1198 | 1198 |
| 1199 Element getSetRuntimeTypeInfo() { | 1199 Element getSetRuntimeTypeInfo() { |
| 1200 return compiler.findHelper(const SourceString('setRuntimeTypeInfo')); | 1200 return compiler.findHelper(const SourceString('setRuntimeTypeInfo')); |
| 1201 } | 1201 } |
| 1202 | 1202 |
| 1203 Element getGetRuntimeTypeInfo() { | 1203 Element getGetRuntimeTypeInfo() { |
| 1204 return compiler.findHelper(const SourceString('getRuntimeTypeInfo')); | 1204 return compiler.findHelper(const SourceString('getRuntimeTypeInfo')); |
| 1205 } | 1205 } |
| 1206 |
| 1207 Element getGetRuntimeTypeArgument() { |
| 1208 return compiler.findHelper(const SourceString('getRuntimeTypeArgument')); |
| 1209 } |
| 1206 } | 1210 } |
| OLD | NEW |