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

Unified Diff: frog/lib/string_implementation.dart

Issue 9963029: Fix some warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (due to error messages during upload) Created 8 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 | « frog/lib/date_implementation.dart ('k') | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/lib/string_implementation.dart
diff --git a/frog/lib/string_implementation.dart b/frog/lib/string_implementation.dart
index b42409e2418a8e4b9fe483d5aea5acc691e42097..45407ebe5964f1b81abad6a2efa15f49b9113254 100644
--- a/frog/lib/string_implementation.dart
+++ b/frog/lib/string_implementation.dart
@@ -91,6 +91,9 @@ return this.replace(from, to);""";
List<String> _splitRegExp(RegExp pattern) native
"'use strict'; return this.split(pattern.re);";
+ Iterable<Match> allMatches(String str) {
+ throw "String.allMatches(String str) unimplemented.";
+ }
/*
Iterable<Match> allMatches(String str) {
List<Match> result = [];
« no previous file with comments | « frog/lib/date_implementation.dart ('k') | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698