blob: bfb64191373685d8f371881416296e12ba7f8746 [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.
* ...
* • If d is the declaration of a library variable or top-level getter, then
* e is equivalent to the getter invocation id.
* @description Checks that if evaluation of the initializer expression of
* a library variable is not successful, the variable is initialized with [:null:].
* @static-warning
* @author msyabro
* @reviewer iefremov
*/
import "../../Utils/expect.dart";
var tlVar = ''.thatMethod(); /// static type warning - no such method, see "Ordinary invocation"
int tlTyped = ''.thatMethod(); /// static type warning - no such method, see "Ordinary invocation"
final tlFinal = ''.thatMethod(); /// static type warning - no such method, see "Ordinary invocation"
final int tlFinalTyped = ''.thatMethod(); /// static type warning - no such method, see "Ordinary invocation"
main() {
try {
tlVar;
Expect.fail('NoSuchMethodError is expected');
} on NoSuchMethodError catch(e) {
Expect.equals(null, tlVar);
}
try {
tlTyped;
Expect.fail('NoSuchMethodError is expected');
} on NoSuchMethodError catch(e) {
Expect.equals(null, tlTyped);
}
try {
tlFinal;
Expect.fail('NoSuchMethodError is expected');
} on NoSuchMethodError catch(e) {
Expect.equals(null, tlFinal);
}
try {
tlFinalTyped;
Expect.fail('NoSuchMethodError is expected');
} on NoSuchMethodError catch(e) {
Expect.equals(null, tlFinalTyped);
}
}