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

Unified Diff: tests/language/named_parameters_default_eq_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/named_parameters_aggregated_test.dart ('k') | tests/language/named_parameters_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/named_parameters_default_eq_test.dart
diff --git a/tests/language/named_parameters_default_eq_test.dart b/tests/language/named_parameters_default_eq_test.dart
index 96a4d2f4f096c4b3618185c0f5fb1d2163cac890..bfa3f6a74567cd17c1fc3b67cd5b9623424d7669 100644
--- a/tests/language/named_parameters_default_eq_test.dart
+++ b/tests/language/named_parameters_default_eq_test.dart
@@ -7,7 +7,7 @@
import "package:expect/expect.dart";
// Default values are not allowed on typedefs.
-typedef int F1({x = 3, y}); /// 01: compile-time error
+typedef int F1({x = 3, y}); //# 01: compile-time error
typedef int functype({x, y, z});
@@ -23,7 +23,7 @@ class A {
factory A.redirectFactory({x, y, z}) = A;
// Default values are not allowed on redirecting factory constructors.
- factory A.badRedirectFactory({x = 3, y}) = A; /// 02: compile-time error
+ factory A.badRedirectFactory({x = 3, y}) = A; //# 02: compile-time error
int get value => x * y * z;
@@ -33,7 +33,7 @@ class A {
main() {
// Reference the type, or dart2js won't see that the declaration is invalid
- F1 _ = null; // /// 01: continued
+ F1 _ = null; // //# 01: continued
var a = new A();
« no previous file with comments | « tests/language/named_parameters_aggregated_test.dart ('k') | tests/language/named_parameters_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698