Index: test/dart_codegen/expect/core/regexp.dart |
diff --git a/test/dart_codegen/expect/core/regexp.dart b/test/dart_codegen/expect/core/regexp.dart |
deleted file mode 100644 |
index d9c1b3bfd79d14b2d23b7db4368a20f514472522..0000000000000000000000000000000000000000 |
--- a/test/dart_codegen/expect/core/regexp.dart |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-part of dart.core; |
- abstract class Match {int get start; |
- int get end; |
- String group(int group); |
- String operator [](int group); |
- List<String> groups(List<int> groupIndices); |
- int get groupCount; |
- String get input; |
- Pattern get pattern; |
-} |
- abstract class RegExp implements Pattern {external factory RegExp(String source, { |
-bool multiLine : false, bool caseSensitive : true} |
-); |
- Match firstMatch(String input); |
- Iterable<Match> allMatches(String input, [int start = 0]); |
- bool hasMatch(String input); |
- String stringMatch(String input); |
- String get pattern; |
- bool get isMultiLine; |
- bool get isCaseSensitive; |
-} |