| Index: dart/pkg/observe/test/path_observer_test.dart
|
| diff --git a/dart/pkg/observe/test/path_observer_test.dart b/dart/pkg/observe/test/path_observer_test.dart
|
| index 10378fa64278b95f80a949d945ef7d8661502bec..dcb8853ba963622cbeffef0c4d567caac3e6b956 100644
|
| --- a/dart/pkg/observe/test/path_observer_test.dart
|
| +++ b/dart/pkg/observe/test/path_observer_test.dart
|
| @@ -315,7 +315,9 @@ class NoSuchMethodModel {
|
| var _foo = 42;
|
| List log = [];
|
|
|
| - noSuchMethod(Invocation invocation) {
|
| + // TODO(ahe): Remove @reflectable from here (once either of
|
| + // http://dartbug.com/15408 or http://dartbug.com/15409 are fixed).
|
| + @reflectable noSuchMethod(Invocation invocation) {
|
| final name = invocation.memberName;
|
| log.add(name);
|
| if (name == #foo && invocation.isGetter) return _foo;
|
|
|