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

Unified Diff: tests/language_strong/constructor_duplicate_initializers_test.dart

Issue 2765693002: Update all tests (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 side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/constructor_duplicate_initializers_test.dart
diff --git a/tests/language_strong/constructor_duplicate_initializers_test.dart b/tests/language_strong/constructor_duplicate_initializers_test.dart
index df64c5f3d198c97462bff14c0df3a3d12cee5a59..0199b2127822ebc9571384a91bfda4465ce84511 100644
--- a/tests/language_strong/constructor_duplicate_initializers_test.dart
+++ b/tests/language_strong/constructor_duplicate_initializers_test.dart
@@ -8,16 +8,16 @@ 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_
- , this.field_ /// 03: compile-time error
+ , this.field_ //# 03: compile-time error
);
final 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