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

Unified Diff: tests/language/class_override_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/class_override_test.dart
diff --git a/tests/language/class_override_test.dart b/tests/language/class_override_test.dart
index 190604bb53162ceb79e43e2a2d29c7df680274bf..57b736029f3766e691744197a1f59c39eadb7470 100644
--- a/tests/language/class_override_test.dart
+++ b/tests/language/class_override_test.dart
@@ -10,14 +10,14 @@ class A {
}
class B extends A {
- foo(a) {} /// 00: static type warning
+ foo(a) {} // /// 00: static type warning
}
main() {
B instance = new B();
try {
instance.foo();
- } on NoSuchMethodError catch (error) { /// 00: continued
+ } on NoSuchMethodError catch (error) { // /// 00: continued
} finally {
}
print("Success");

Powered by Google App Engine
This is Rietveld 408576698