| Index: lib/compiler/implementation/native_handler.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/native_handler.dart (revision 12782)
|
| +++ lib/compiler/implementation/native_handler.dart (working copy)
|
| @@ -211,7 +211,7 @@
|
| // 1) foo() native; hasBody = false, isRedirecting = false
|
| // 2) foo() native "bar"; hasBody = false, isRedirecting = true
|
| // 3) foo() native "return 42"; hasBody = true, isRedirecting = false
|
| - RegExp nativeRedirectionRegExp = const RegExp(@'^[a-zA-Z][a-zA-Z_$0-9]*$');
|
| + RegExp nativeRedirectionRegExp = const RegExp(r'^[a-zA-Z][a-zA-Z_$0-9]*$');
|
| bool hasBody = false;
|
| bool isRedirecting = false;
|
| String nativeMethodName = element.name.slowToString();
|
|
|