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

Unified Diff: tests/language_strong/abstract_method_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/abstract_method_test.dart
diff --git a/tests/language_strong/abstract_method_test.dart b/tests/language_strong/abstract_method_test.dart
index c2c52253ae85bac713fc94bcd159817234a23c62..8c90de2733058b9b485194699912775a7dc05999 100644
--- a/tests/language_strong/abstract_method_test.dart
+++ b/tests/language_strong/abstract_method_test.dart
@@ -11,9 +11,9 @@ set height(x) { throw "error: top-level setter called"; }
width() { throw "error: top-level function called"; }
abstract class A {
- int get length; // Abstract instance getter.
+ int get length; // Abstract instance getter.
set height(int x); // Abstract instance setter.
sra1 2017/03/21 03:28:14 fix
- int width(); // Abstract instance method.
+ int width(); // Abstract instance method.
// Must resolve to non-abstract length getter in subclass.
get useLength => length;

Powered by Google App Engine
This is Rietveld 408576698