blob: 8ce3967ac225883ebe0011980a72e8b96e916e01 [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 identifier expression e of the form id proceeds as follows:
* Let d be the innermost declaration in the enclosing lexical scope whose name
* is id. If no such declaration exists in the lexical scope, let d be the declaration
* of the inherited member named id if it exists.
* ...
* • Otherwise, e is equivalent to the property extraction this.id.
* @description Checks that if id is not declared nor inherited it is indeed
* equivalent to thid.id, by implementing noSuchMethod() in the class and
* intercepting NoSuchMethodError.
* @static-warning
* @author ilya
*/
import "../../Utils/expect.dart";
class C {
noSuchMethod(Invocation _) { times++; }
test() {
undeclared; // first reference
}
C() {
undeclared; // second reference
}
static int times = 0;
}
main() {
new C().test();
Expect.equals(2, C.times);
}