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

Unified Diff: tests/language/constructor_duplicate_initializers_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 side-by-side diff with in-line comments
Download patch
Index: tests/language/constructor_duplicate_initializers_test.dart
diff --git a/tests/language/constructor_duplicate_initializers_test.dart b/tests/language/constructor_duplicate_initializers_test.dart
index df64c5f3d198c97462bff14c0df3a3d12cee5a59..9748beec1c7f0693fb9ea442692d42fd1426860a 100644
--- a/tests/language/constructor_duplicate_initializers_test.dart
+++ b/tests/language/constructor_duplicate_initializers_test.dart
@@ -8,12 +8,12 @@ class Class {
Class(var v)
: field_ = v
// Test against duplicate final field initializaion in initializing list.
- , field_ = 2 /// 01: compile-time error
+ , field_ = 2 // /// 01: compile-time error
;
Class.field(this.field_)
// Test against duplicate final field initialization between initializing
// formals and initializer list.
- : field_ = 2 /// 02: compile-time error
+ : field_ = 2 // /// 02: compile-time error
;
// Test against duplicate final field initialization in initializing formals.
Class.two_fields(this.field_
@@ -26,6 +26,6 @@ main() {
new Class(42);
new Class.field(42);
new Class.two_fields(42
- , 42 /// 03: continued
+ , 42 // /// 03: continued
);
}

Powered by Google App Engine
This is Rietveld 408576698