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

Unified Diff: tests/compiler/dart2js/elide_callthrough_stub_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/compiler/dart2js/elide_callthrough_stub_test.dart
diff --git a/tests/compiler/dart2js/elide_callthrough_stub_test.dart b/tests/compiler/dart2js/elide_callthrough_stub_test.dart
index 6f925b3e8bb4976d9515619e7dc62c53343df11d..2ae8f1dea049fecb696eacd596115f676e80c1de 100644
--- a/tests/compiler/dart2js/elide_callthrough_stub_test.dart
+++ b/tests/compiler/dart2js/elide_callthrough_stub_test.dart
@@ -14,7 +14,7 @@ const String TEST1 = r'''
class W {
final Function _fun;
W(this._fun);
- foo(zzz) => _fun(zzz); // this._fun$1(zzz) --> this._fun.call$1(zzz)
+ foo(zzz) => _fun(zzz); // this._fun$1(zzz) --> this._fun.call$1(zzz)
}
add1(x) => x + 1;
main() {
@@ -28,7 +28,7 @@ class W {
final Function __fun;
Function get _fun => __fun;
W(this.__fun);
- foo(zzz) => _fun(zzz); // this._fun$1(zzz) stays same.
+ foo(zzz) => _fun(zzz); // this._fun$1(zzz) stays same.
}
add1(x) => x + 1;
main() {

Powered by Google App Engine
This is Rietveld 408576698