| Index: tests/compiler/dart2js_native/native_field_invocation2_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_field_invocation2_test.dart b/tests/compiler/dart2js_native/native_field_invocation2_test.dart
|
| index 7b6dc9084d22be71c16b33ae9239c7fdcd320788..290a68fa45b6b515bfd5e6870347285e101d6d20 100644
|
| --- a/tests/compiler/dart2js_native/native_field_invocation2_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_field_invocation2_test.dart
|
| @@ -18,13 +18,12 @@ class NNative {
|
| g(val) => "### $val ###";
|
| }
|
|
|
| -nativeId(x) native;
|
| +nativeId(x) native ;
|
|
|
| void setup() native """
|
| nativeId = function(x) { return x; }
|
| """;
|
|
|
| -
|
| class ClickCounter {
|
| var status;
|
|
|
|
|