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

Unified Diff: tests/language/core_type_check_test.dart

Issue 460953003: Update test to have second argument on Pattern.allMatches. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/core_type_check_test.dart
diff --git a/tests/language/core_type_check_test.dart b/tests/language/core_type_check_test.dart
index 4af259064f192c47076e0a22575a84099c01b20e..495011e5712466d0c633bc35d0c2c02aa4e4100c 100644
--- a/tests/language/core_type_check_test.dart
+++ b/tests/language/core_type_check_test.dart
@@ -20,13 +20,13 @@ class B {
class C implements Pattern {
matchAsPrefix(String s, [int start = 0]) => null;
- allMatches(String s) => null;
+ allMatches(String s, [int start = 0]) => null;
}
class D implements Pattern, Comparable {
int compareTo(o) => 0;
matchAsPrefix(String s, [int start = 0]) => null;
- allMatches(String s) => null;
+ allMatches(String s, [int start = 0]) => null;
}
main() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698