summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js b/js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js
new file mode 100644
index 0000000000..a1ff9ff463
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/unicode_restricted_quantifier_without_atom.js
@@ -0,0 +1,54 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: B.1.4 is not applied for Unicode RegExp - Quantifier without matching Atom
+info: |
+ The compatibility extensions defined in B.1.4 Regular Expressions Patterns
+ are not applied for Unicode RegExp.
+ Tested extension: "Atom[U] :: PatternCharacter"
+es6id: 21.1.2
+---*/
+
+// Quantifier without atom.
+assert.throws(SyntaxError, function() {
+ RegExp("*", "u");
+}, 'RegExp("*", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("+", "u");
+}, 'RegExp("+", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("?", "u");
+}, 'RegExp("?", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1}", "u");
+}, 'RegExp("{1}", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1,}", "u");
+}, 'RegExp("{1,}", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1,2}", "u");
+}, 'RegExp("{1,2}", "u"): ');
+
+
+// Reluctant quantifier without atom.
+assert.throws(SyntaxError, function() {
+ RegExp("*?", "u");
+}, 'RegExp("*?", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("+?", "u");
+}, 'RegExp("+?", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("??", "u");
+}, 'RegExp("??", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1}?", "u");
+}, 'RegExp("{1}?", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1,}?", "u");
+}, 'RegExp("{1,}?", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("{1,2}?", "u");
+}, 'RegExp("{1,2}?", "u"): ');
+
+reportCompare(0, 0);