blob: 6ee0f8db68fa64f99329aca07214141bb3e4b611 [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 Evaluation of an assignment of the form e1.v = e2 proceeds as follows:
* The expression e1 is evaluated to an object o1. Then, the expression e2 is
* evaluated to an object o2. Then, the setter v is looked up in o1 with respect to
* the current library, and its body is executed with its formal parameter bound
* to o2 and this bound to o1.
* If the setter lookup has failed, then a new instance im of the predefined class
* Invocation is created, such that :
* - im.isSetter evaluates to true.
* - im.memberName evaluates to ’v=’.
* - im.positionalArguments evaluates to an immutable list with the same values as [o2].
* -im.namedArguments evaluates to the value of const {}.
* Then the method noSuchMethod() is looked up in o1 with argument im. The value of the assignment expression is
* o2 irrespective of whether setter lookup has failed or succeeded.
* @description Checks that method noSuchMethod is invoked with the specified argument
* if v is an instance method.
* @static-warning
* @author msyabro
* @reviewer iefremov
*/
import "../../Utils/expect.dart";
class TestException {}
class C {
noSuchMethod(Invocation im) {
Expect.isTrue(im.isSetter);
Expect.equals(const Symbol("func="), im.memberName);
//Expect.listEquals([Closure], im.positionalArguments); //Function.toString is not specified
Expect.equals(1, im.positionalArguments.length);
Expect.mapEquals({}, im.namedArguments);
throw new TestException();
}
func() {}
test() {
try {
func = () => 1; /// static type warning
Expect.fail("Method noSuchMethod() was not properly executed!");
} on TestException catch(e) {}
}
}
main() {
new C().test();
}