| Index: lib/compiler/implementation/lib/regexp_helper.dart
|
| diff --git a/lib/compiler/implementation/lib/regexp_helper.dart b/lib/compiler/implementation/lib/regexp_helper.dart
|
| index d8bc803320ceeb7b1ce90b9f2be020d755fdd5c9..72a9f96df454cdaf9338fcc193e980cbb675b74b 100644
|
| --- a/lib/compiler/implementation/lib/regexp_helper.dart
|
| +++ b/lib/compiler/implementation/lib/regexp_helper.dart
|
| @@ -6,7 +6,7 @@ List regExpExec(JSSyntaxRegExp regExp, String str) {
|
| var nativeRegExp = regExpGetNative(regExp);
|
| var result = JS('List', @'#.exec(#)', nativeRegExp, str);
|
| if (JS('bool', @'# === null', result)) return null;
|
| - return result;
|
| + return result;
|
| }
|
|
|
| bool regExpTest(JSSyntaxRegExp regExp, String str) {
|
|
|