summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/regexp-dotall.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/harmony/regexp-dotall.js')
-rw-r--r--deps/v8/test/mjsunit/harmony/regexp-dotall.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/harmony/regexp-dotall.js b/deps/v8/test/mjsunit/harmony/regexp-dotall.js
index 9bf78431a9..eed5d26f05 100644
--- a/deps/v8/test/mjsunit/harmony/regexp-dotall.js
+++ b/deps/v8/test/mjsunit/harmony/regexp-dotall.js
@@ -56,6 +56,12 @@ function toSlowMode(re) {
assertFalse(re.dotAll);
}
+// Different construction variants with all flags.
+{
+ assertEquals("gimsuy", new RegExp("", "yusmig").flags);
+ assertEquals("gimsuy", new RegExp().compile("", "yusmig").flags);
+}
+
// Default '.' behavior.
{
let re = /^.$/;