Index: sdk/lib/_internal/lib/regexp_helper.dart |
diff --git a/sdk/lib/_internal/lib/regexp_helper.dart b/sdk/lib/_internal/lib/regexp_helper.dart |
index 09fe8619735c96c29fd6731ef04b304696d9c9b2..1409c9b692322f78b3c18c79f4ccb88937112388 100644 |
--- a/sdk/lib/_internal/lib/regexp_helper.dart |
+++ b/sdk/lib/_internal/lib/regexp_helper.dart |
@@ -150,8 +150,6 @@ class _MatchImplementation implements Match { |
assert(JS("var", "#.index", _match) is int); |
} |
- // TODO(12843): Remove when grace period is over. |
- String get str => input; |
String get input => JS("String", "#.input", _match); |
int get start => JS("int", "#.index", _match); |
int get end => start + _match[0].length; |