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

Unified Diff: tests/language/constructor_named_arguments_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_named_arguments_test.dart
diff --git a/tests/language/constructor_named_arguments_test.dart b/tests/language/constructor_named_arguments_test.dart
index 063a88112514ead54d726d86ed423eb35c61dcc5..42de7a8a206b32bdacfbea7245226a79d6cdff25 100644
--- a/tests/language/constructor_named_arguments_test.dart
+++ b/tests/language/constructor_named_arguments_test.dart
@@ -23,7 +23,7 @@ class X {
X({a: 'defa', b: 'defb'}) : this.i = a, this.j = b;
X.foo() : this(b: 1, a: 2);
X.bar() : this(
- 1, /// 01: static type warning, runtime error
+ 1, // /// 01: static type warning, runtime error
a: 2);
X.baz() : this(a: 1, b: 2);
X.qux() : this(b: 2);

Powered by Google App Engine
This is Rietveld 408576698