| Index: sdk/lib/_internal/lib/core_patch.dart
|
| diff --git a/sdk/lib/_internal/lib/core_patch.dart b/sdk/lib/_internal/lib/core_patch.dart
|
| index 3a4f7ac7fd1985d7fa50393821ee865ef688ff2a..5e2e1d2eac4eb908a454f58a93923cd391208289 100644
|
| --- a/sdk/lib/_internal/lib/core_patch.dart
|
| +++ b/sdk/lib/_internal/lib/core_patch.dart
|
| @@ -221,10 +221,10 @@ patch class String {
|
| }
|
|
|
| patch class RegExp {
|
| - patch factory RegExp(String pattern,
|
| + patch factory RegExp(String source,
|
| {bool multiLine: false,
|
| bool caseSensitive: true})
|
| - => new JSSyntaxRegExp(pattern,
|
| + => new JSSyntaxRegExp(source,
|
| multiLine: multiLine,
|
| caseSensitive: caseSensitive);
|
| }
|
|
|