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

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

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 class A { 5 class A {
6 // Constructor may not be static. 6 // Constructor may not be static.
7 static A(); /// 00: compile-time error 7 static A(); // /// 00: compile-time error
8 8
9 // Factory may not be static. 9 // Factory may not be static.
10 static factory A() { return null; } /// 01: compile-time error 10 static factory A() { return null; } // /// 01: compile-time error
11 11
12 // Named constructor may not conflict with names of methods and fields. 12 // Named constructor may not conflict with names of methods and fields.
13 var m; 13 var m;
14 A.m() { m = 0; } /// 04: compile-time error 14 A.m() { m = 0; } // /// 04: compile-time error
15 15
16 set q(var value) { m = 0; } // No name conflict with q=. 16 set q(var value) { m = 0; } // No name conflict with q=.
17 A.q(); /// 05: ok 17 A.q(); // /// 05: ok
18 A(); /// 05: ok 18 A(); // /// 05: ok
19 19
20 A.foo() : m = 0; /// 06: compile-time error 20 A.foo() : m = 0; // /// 06: compile-time error
21 int foo(int a, int b) => a + b * m; 21 int foo(int a, int b) => a + b * m;
22 } 22 }
23 23
24 main() { 24 main() {
25 new A(); 25 new A();
26 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698