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

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

Issue 2763823002: Move spaces from before comments to within comments (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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // Test compile-time errors for illegal variable declarations if the name 5 // Test compile-time errors for illegal variable declarations if the name
6 // has been referenced before the variable is declared. 6 // has been referenced before the variable is declared.
7 7
8 import 'dart:math' as math; 8 import 'dart:math' as math;
9 9
10 use(value) => value; 10 use(value) => value;
(...skipping 28 matching lines...) Expand all
39 } 39 }
40 final x = "I have not yet begun to procrastinate."; /// 02: compile-time er ror 40 final x = "I have not yet begun to procrastinate."; /// 02: compile-time er ror
41 const y = "Honk if you like peace and quiet!"; /// 03: compile-time error 41 const y = "Honk if you like peace and quiet!"; /// 03: compile-time error
42 } 42 }
43 43
44 void test4() { 44 void test4() {
45 void Q() { 45 void Q() {
46 P(); // Refers to non-existing top-level function P 46 P(); // Refers to non-existing top-level function P
47 } 47 }
48 void P() { /// 06: compile-time error 48 void P() { /// 06: compile-time error
49 Q(); /// 06: continued 49 Q(); // /// 06: continued
50 } /// 06: continued 50 } // /// 06: continued
51 51
52 Function f = () {x = f;}; /// 07: compile-time error 52 Function f = () {x = f;}; /// 07: compile-time error
53 } 53 }
54 54
55 test() { 55 test() {
56 test1(); 56 test1();
57 test2(); 57 test2();
58 test3(); 58 test3();
59 test4(); 59 test4();
60 } 60 }
(...skipping 23 matching lines...) Expand all
84 var int = 007; 84 var int = 007;
85 } 85 }
86 86
87 void main() { 87 void main() {
88 var c = new C(); 88 var c = new C();
89 c.test(); 89 c.test();
90 testTypeRef(); 90 testTypeRef();
91 testLibPrefix(); 91 testLibPrefix();
92 noErrorsExpected(); 92 noErrorsExpected();
93 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698