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

Unified Diff: tests/language/constructor_name_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
Index: tests/language/constructor_name_test.dart
diff --git a/tests/language/constructor_name_test.dart b/tests/language/constructor_name_test.dart
index 93742a6e6363f0bac2187758f9345ec385439b67..7559d2eaf46dd1c9355b998596ad0e1be2270634 100644
--- a/tests/language/constructor_name_test.dart
+++ b/tests/language/constructor_name_test.dart
@@ -3,14 +3,14 @@
// BSD-style license that can be found in the LICENSE file.
class Foo {
- Bar.Foo(); /// 01: compile-time error
- factory Bar(); /// 02: compile-time error
- factory Bar.Baz(); /// 03: compile-time error
+ Bar.Foo(); //# 01: compile-time error
+ factory Bar(); //# 02: compile-time error
+ factory Bar.Baz(); //# 03: compile-time error
}
void main() {
new Foo();
- new Foo.Foo(); /// 01: continued
- new Foo.Baz(); /// 03: continued
+ new Foo.Foo(); //# 01: continued
+ new Foo.Baz(); //# 03: continued
}
« no previous file with comments | « tests/language/constructor_initializer_test.dart ('k') | tests/language/constructor_named_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698