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

Unified Diff: tests/language_strong/class_override_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: 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/class_override_test.dart
diff --git a/tests/language_strong/class_override_test.dart b/tests/language_strong/class_override_test.dart
index 190604bb53162ceb79e43e2a2d29c7df680274bf..836f555d94c5e27bfc4cd08707d1c0dcf07d89f0 100644
--- a/tests/language_strong/class_override_test.dart
+++ b/tests/language_strong/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