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

Side by Side Diff: tests/language/regress_23051_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) 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 // Regression test for issue 23051. 5 // Regression test for issue 23051.
6 6
7 main() { 7 main() {
8 new A(); /// 01: compile-time error 8 new A(); // /// 01: compile-time error
9 } 9 }
10 10
11 class A { /// 01: continued 11 class A { // /// 01: continued
12 // Note the trailing ' in the next line. /// 01: continued 12 // Note the trailing ' in the next line. /// 01: continued
13 get foo => bar();' /// 01: continued 13 get foo => bar();' // /// 01: continued
14 /// 01: continued 14 /// 01: continued
sra1 2017/03/21 03:28:14 fix
15 String bar( /// 01: continued 15 String bar( // /// 01: continued
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698