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

Unified Diff: tests/language_strong/assignable_expression_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_strong/assignable_expression_test.dart
diff --git a/tests/language_strong/assignable_expression_test.dart b/tests/language_strong/assignable_expression_test.dart
index c29e3662335b8b910e2cff1fa895b41cf41c08ac..b5ed9fe4244c3250c17c06d289d4030de966b47c 100644
--- a/tests/language_strong/assignable_expression_test.dart
+++ b/tests/language_strong/assignable_expression_test.dart
@@ -13,32 +13,32 @@ var tl_static_var = 0;
main() {
tl_static_var = 0;
- (tl_static_var) = 0; /// 01: compile-time error
- (tl_static_var)++; /// 02: compile-time error
- ++(tl_static_var); /// 03: compile-time error
+ (tl_static_var) = 0; // /// 01: compile-time error
+ (tl_static_var)++; // /// 02: compile-time error
+ ++(tl_static_var); // /// 03: compile-time error
C.static_field = 0;
- (C.static_field) = 0; /// 11: compile-time error
- (C.static_field)++; /// 12: compile-time error
- ++(C.static_field); /// 13: compile-time error
+ (C.static_field) = 0; // /// 11: compile-time error
+ (C.static_field)++; // /// 12: compile-time error
+ ++(C.static_field); // /// 13: compile-time error
tl_static_var = [1, 2, 3];
tl_static_var[0] = 0;
(tl_static_var)[0] = 0;
- (tl_static_var[0]) = 0; /// 21: compile-time error
- (tl_static_var[0])++; /// 22: compile-time error
- ++(tl_static_var[0]); /// 23: compile-time error
+ (tl_static_var[0]) = 0; // /// 21: compile-time error
+ (tl_static_var[0])++; // /// 22: compile-time error
+ ++(tl_static_var[0]); // /// 23: compile-time error
C.static_field = [1, 2, 3];
- (C.static_field[0]) = 0; /// 31: compile-time error
- (C.static_field[0])++; /// 32: compile-time error
- ++(C.static_field[0]); /// 33: compile-time error
+ (C.static_field[0]) = 0; // /// 31: compile-time error
+ (C.static_field[0])++; // /// 32: compile-time error
+ ++(C.static_field[0]); // /// 33: compile-time error
var a = 0;
- (a) = 0; /// 41: compile-time error
- (a)++; /// 42: compile-time error
- ++(a); /// 43: compile-time error
+ (a) = 0; // /// 41: compile-time error
+ (a)++; // /// 42: compile-time error
+ ++(a); // /// 43: compile-time error
// Neat palindrome expression. x is assignable, ((x)) is not.
- var funcnuf = (x) => ((x))=((x)) <= (x); /// 50: compile-time error
+ var funcnuf = (x) => ((x))=((x)) <= (x); // /// 50: compile-time error
}

Powered by Google App Engine
This is Rietveld 408576698