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

Side by Side Diff: tests/language/syntax_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 SyntaxTest { 5 class SyntaxTest {
6 // "this" cannot be used as a field name. 6 // "this" cannot be used as a field name.
7 SyntaxTest this; /// 01: compile-time error 7 SyntaxTest this; /// 01: compile-time error
8 8
9 // Syntax error. 9 // Syntax error.
10 foo {} /// 02: compile-time error 10 foo {} /// 02: compile-time error
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 // Swallowing exceptions. Any error should be a compile-time error 243 // Swallowing exceptions. Any error should be a compile-time error
244 // which kills the current isolate. 244 // which kills the current isolate.
245 } 245 }
246 } 246 }
247 247
248 class Bad { 248 class Bad {
249 factory Bad<Bad(String type) { return null; } /// 63: compile-time error 249 factory Bad<Bad(String type) { return null; } /// 63: compile-time error
250 } 250 }
251 251
252 class C { 252 class C {
253 void f; /// 66: compile-time error 253 void f; // /// 66: compile-time error
254 static void g; /// 67: compile-time error 254 static void g; // /// 67: compile-time error
255 } 255 }
256 256
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698