Chromium Code Reviews| Index: tests/compiler/dart2js_foreign/native_no_such_method_exception4_test.dart |
| diff --git a/tests/compiler/dart2js_foreign/native_no_such_method_exception4_test.dart b/tests/compiler/dart2js_foreign/native_no_such_method_exception4_test.dart |
| index 80559389da3fdd21e35172bdbb8a63f6036783ad..b0eddc719df214e62339d65f3d5c72aa3afd7e24 100644 |
| --- a/tests/compiler/dart2js_foreign/native_no_such_method_exception4_test.dart |
| +++ b/tests/compiler/dart2js_foreign/native_no_such_method_exception4_test.dart |
| @@ -3,13 +3,13 @@ |
| // BSD-style license that can be found in the LICENSE file. |
| @native("*A") |
| -class A { |
| +class A { |
| bar() => 42; |
| noSuchMethod(x,y) => "native($x:$y)"; |
| } |
| @native("*B") |
| -class B { |
| +class B { |
| baz() => 42; |
| } |