| OLD | NEW |
| 1 part of dart.core; | 1 part of dart.core; |
| 2 | 2 abstract class Match {int get start; |
| 3 abstract class Match { | 3 int get end; |
| 4 int get start; | 4 String group(int group); |
| 5 int get end; | 5 String operator [](int group); |
| 6 String group(int group); | 6 List<String> groups(List<int> groupIndices); |
| 7 String operator [](int group); | 7 int get groupCount; |
| 8 List<String> groups(List<int> groupIndices); | 8 String get input; |
| 9 int get groupCount; | 9 Pattern get pattern; |
| 10 String get input; | |
| 11 Pattern get pattern; | |
| 12 } | 10 } |
| 13 abstract class RegExp implements Pattern { | 11 abstract class RegExp implements Pattern {factory RegExp(String source, { |
| 14 factory RegExp(String source, | 12 bool multiLine : false, bool caseSensitive : true} |
| 15 {bool multiLine: false, bool caseSensitive: true}) => ((__x33) => DDC$RT | 13 ) => ((__x33) => DDC$RT.cast(__x33, dynamic, RegExp, "CastExact", """line 130, c
olumn 8 of dart:core/regexp.dart: """, __x33 is RegExp, true))(new JSSyntaxRegEx
p(source, multiLine: multiLine, caseSensitive: caseSensitive)); |
| 16 .cast(__x33, dynamic, RegExp, "CastExact", | 14 Match firstMatch(String input); |
| 17 """line 130, column 8 of dart:core/regexp.dart: """, | 15 Iterable<Match> allMatches(String input, [int start = 0]); |
| 18 __x33 is RegExp, true))(new JSSyntaxRegExp(source, | 16 bool hasMatch(String input); |
| 19 multiLine: multiLine, caseSensitive: caseSensitive)); | 17 String stringMatch(String input); |
| 20 Match firstMatch(String input); | 18 String get pattern; |
| 21 Iterable<Match> allMatches(String input, [int start = 0]); | 19 bool get isMultiLine; |
| 22 bool hasMatch(String input); | 20 bool get isCaseSensitive; |
| 23 String stringMatch(String input); | |
| 24 String get pattern; | |
| 25 bool get isMultiLine; | |
| 26 bool get isCaseSensitive; | |
| 27 } | 21 } |
| OLD | NEW |