summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js b/js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js
new file mode 100644
index 0000000000..2a437729cf
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/unicode_restricted_incomplete_quantifier.js
@@ -0,0 +1,42 @@
+// 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 - Incomplete quantifiers
+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
+---*/
+
+// Incomplete quantifier with atom.
+assert.throws(SyntaxError, function() {
+ RegExp("a{", "u");
+}, 'RegExp("a{", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("a{1", "u");
+}, 'RegExp("a{1", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("a{1,", "u");
+}, 'RegExp("a{1,", "u"): ');
+assert.throws(SyntaxError, function() {
+ RegExp("a{1,2", "u");
+}, 'RegExp("a{1,2", "u"): ');
+
+
+// Incomplete quantifier without atom.
+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);