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 library native; | 5 library native; |
6 | 6 |
7 import 'dart:uri'; | 7 import 'dart:uri'; |
8 import 'dart2jslib.dart' hide SourceString; | 8 import 'dart2jslib.dart' hide SourceString; |
9 import 'elements/elements.dart'; | 9 import 'elements/elements.dart'; |
10 import 'js_backend/js_backend.dart'; | 10 import 'js_backend/js_backend.dart'; |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
204 Element helper = builder.interceptors.getClosureConverter(); | 204 Element helper = builder.interceptors.getClosureConverter(); |
205 builder.pushInvokeHelper2(helper, local, arity); | 205 builder.pushInvokeHelper2(helper, local, arity); |
206 HInstruction closure = builder.pop(); | 206 HInstruction closure = builder.pop(); |
207 return closure; | 207 return closure; |
208 } | 208 } |
209 | 209 |
210 // Check which pattern this native method follows: | 210 // Check which pattern this native method follows: |
211 // 1) foo() native; hasBody = false, isRedirecting = false | 211 // 1) foo() native; hasBody = false, isRedirecting = false |
212 // 2) foo() native "bar"; hasBody = false, isRedirecting = true | 212 // 2) foo() native "bar"; hasBody = false, isRedirecting = true |
213 // 3) foo() native "return 42"; hasBody = true, isRedirecting = false | 213 // 3) foo() native "return 42"; hasBody = true, isRedirecting = false |
214 RegExp nativeRedirectionRegExp = const RegExp(r'^[a-zA-Z][a-zA-Z_$0-9]*$'); | 214 RegExp nativeRedirectionRegExp = new RegExp(r'^[a-zA-Z][a-zA-Z_$0-9]*$'); |
ahe
2012/11/12 13:35:03
Top-level final field?
Anders Johnsen
2012/11/12 13:45:38
Done.
| |
215 bool hasBody = false; | 215 bool hasBody = false; |
216 bool isRedirecting = false; | 216 bool isRedirecting = false; |
217 String nativeMethodName = element.name.slowToString(); | 217 String nativeMethodName = element.name.slowToString(); |
218 if (nativeBody != null) { | 218 if (nativeBody != null) { |
219 LiteralString jsCode = nativeBody.asLiteralString(); | 219 LiteralString jsCode = nativeBody.asLiteralString(); |
220 String str = jsCode.dartString.slowToString(); | 220 String str = jsCode.dartString.slowToString(); |
221 if (nativeRedirectionRegExp.hasMatch(str)) { | 221 if (nativeRedirectionRegExp.hasMatch(str)) { |
222 nativeMethodName = str; | 222 nativeMethodName = str; |
223 isRedirecting = true; | 223 isRedirecting = true; |
224 nativeEmitter.addRedirectingMethod(element, nativeMethodName); | 224 nativeEmitter.addRedirectingMethod(element, nativeMethodName); |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
331 String parameters) { | 331 String parameters) { |
332 buffer.add(" if (Object.getPrototypeOf(this).hasOwnProperty"); | 332 buffer.add(" if (Object.getPrototypeOf(this).hasOwnProperty"); |
333 buffer.add("('$methodName')) {\n"); | 333 buffer.add("('$methodName')) {\n"); |
334 buffer.add(" $code"); | 334 buffer.add(" $code"); |
335 buffer.add(" } else {\n"); | 335 buffer.add(" } else {\n"); |
336 buffer.add(" return Object.prototype.$methodName.call(this"); | 336 buffer.add(" return Object.prototype.$methodName.call(this"); |
337 buffer.add(parameters == '' ? '' : ', $parameters'); | 337 buffer.add(parameters == '' ? '' : ', $parameters'); |
338 buffer.add(");\n"); | 338 buffer.add(");\n"); |
339 buffer.add(" }\n"); | 339 buffer.add(" }\n"); |
340 } | 340 } |
OLD | NEW |