| Index: tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart b/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart
|
| index c0f03ac85d18d32e1e2fe934fc4ae4a72dd30d2c..58074dfdef9c282ce2f715d23f9b20fa48566737 100644
|
| --- a/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| class A native "*A" {
|
| bar() => 42;
|
| - noSuchMethod(x) => "native(${x.memberName}:${x.positionalArguments})";
|
| + noSuchMethod(x,y) => "native($x:$y)";
|
| }
|
|
|
| class B native "*B" {
|
| @@ -13,7 +13,7 @@ class B native "*B" {
|
|
|
| class C {
|
| static create() => new C();
|
| - noSuchMethod(x) => "${x.memberName}:${x.positionalArguments}";
|
| + noSuchMethod(x, y) => "$x:$y";
|
| }
|
|
|
| makeA() native;
|
|
|