Index: src/regexp.js |
diff --git a/src/regexp.js b/src/regexp.js |
index da1883f3a427ec0edbdfd45af99e219071215b79..a8390b0c312b1c652fcd242ba72088f3e4ea9b9f 100644 |
--- a/src/regexp.js |
+++ b/src/regexp.js |
@@ -385,7 +385,7 @@ function RegExpMakeCaptureGetter(n) { |
// pairs for the match and all the captured substrings), the invariant is |
// that there are at least two capture indeces. The array also contains |
// the subject string for the last successful match. |
-var lastMatchInfo = new InternalArray( |
+var lastMatchInfo = new InternalPackedArray( |
2, // REGEXP_NUMBER_OF_CAPTURES |
"", // Last subject. |
void 0, // Last input - settable with RegExpSetInput. |