Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: tests/language/prefix_identifier_reference_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Validate the following spec text from section 16.32 (Identifier Reference): 5 // Validate the following spec text from section 16.32 (Identifier Reference):
6 // Evaluation of an identifier expression e of the form id proceeds as 6 // Evaluation of an identifier expression e of the form id proceeds as
7 // follows: 7 // follows:
8 // Let d be the innermost declaration in the enclosing lexical scope whose 8 // Let d be the innermost declaration in the enclosing lexical scope whose
9 // name is id or id=. If no such declaration exists in the lexical scope, 9 // name is id or id=. If no such declaration exists in the lexical scope,
10 // d be the declaration of the inherited member named id if it exists. 10 // d be the declaration of the inherited member named id if it exists.
11 // - If d is a prefix p, a compile-time error occurs unless the token 11 // - If d is a prefix p, a compile-time error occurs unless the token
12 // immediately following d is '.'. 12 // immediately following d is '.'.
13 13
14 import "package:expect/expect.dart"; 14 import "package:expect/expect.dart";
15 import "empty_library.dart" as p; 15 import "empty_library.dart" as p;
16 16
17 void f(x) {} 17 void f(x) {}
18 18
19 main() { 19 main() {
20 f(p); // /// 01: compile-time error 20 f(p); // //# 01: compile-time error
21 var x = p; // /// 02: compile-time error 21 var x = p; // //# 02: compile-time error
22 var x = p[0]; /// 03: compile-time error 22 var x = p[0]; //# 03: compile-time error
23 p[0] = null; // /// 04: compile-time error 23 p[0] = null; // //# 04: compile-time error
24 p += 0; // /// 05: compile-time error 24 p += 0; // //# 05: compile-time error
25 } 25 }
OLDNEW
« no previous file with comments | « tests/language/prefix_assignment_test.dart ('k') | tests/language/prefix_unqualified_invocation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698