| Index: lib/core/regexp.dart
|
| diff --git a/lib/core/regexp.dart b/lib/core/regexp.dart
|
| index 5d2db7f374508c92f7b29890143527aaf7c050c6..99f8befa6e63a7104eacffe3fd33b0544fd69276 100644
|
| --- a/lib/core/regexp.dart
|
| +++ b/lib/core/regexp.dart
|
| @@ -28,13 +28,13 @@ abstract class Match {
|
| /**
|
| * Returns the index in the string where the match starts.
|
| */
|
| - int start();
|
| + int get start;
|
|
|
| /**
|
| * Returns the index in the string after the last character of the
|
| * match.
|
| */
|
| - int end();
|
| + int get end;
|
|
|
| /**
|
| * Returns the string matched by the given [group]. If [group] is 0,
|
| @@ -52,7 +52,7 @@ abstract class Match {
|
| /**
|
| * Returns the number of groups in the regular expression.
|
| */
|
| - int groupCount();
|
| + int get groupCount;
|
|
|
| /**
|
| * The string on which this matcher was computed.
|
|
|