blob: d33d4d2aa98e39bddedc5b22cadb458b6dd85a47 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion final bool isMethod
/// Whether the invocation was a method call.
/// @description Checks that isMethod returns false for getters and setters
/// invocations.
/// @author ilya
import "../../../Utils/expect.dart";
@proxy
class D {
get getOnly {}
set setOnly (x) {}
noSuchMethod(Invocation i) {
Expect.isFalse(i.isMethod);
}
}
class C extends D {
noSuchMethod(Invocation i) {
Expect.isFalse(i.isMethod);
}
}
test(dynamic x) {
x.foo;
x.bar = 1;
x.setOnly;
x.getOnly = 1;
}
main() {
test(new C());
}