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

Unified Diff: tests/language_strong/class_override_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language_strong/class_literal_test.dart ('k') | tests/language_strong/class_syntax_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 57b736029f3766e691744197a1f59c39eadb7470..b14101e61e4e8506792225be906ed2cbf36ef80f 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");
« no previous file with comments | « tests/language_strong/class_literal_test.dart ('k') | tests/language_strong/class_syntax_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698