test262/test/built-ins/RegExp/unicode_restricted_identity_escape_c.js
André Bargull f95b56ab28 Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
2018-02-09 12:09:47 -05:00

46 lines
1.4 KiB
JavaScript

// 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 - Invalid control escape sequences
info: |
The compatibility extensions defined in B.1.4 Regular Expressions Patterns
are not applied for Unicode RegExp.
Tested extension: "IdentityEscape[U] :: [~U] SourceCharacter but not c"
es6id: 21.1.2
---*/
function isAlpha(c) {
return ("A" <= c && c <= "Z") || ("a" <= c && c <= "z");
}
// "c ControlLetter" sequence in AtomEscape.
//
// AtomEscape[U] :: CharacterEscape[?U]
// CharacterEscape[U] :: c ControlLetter
assert.throws(SyntaxError, function() { RegExp("\\c", "u"); });
for (var cu = 0x00; cu <= 0x7f; ++cu) {
var s = String.fromCharCode(cu);
if (!isAlpha(s)) {
assert.throws(SyntaxError, function() {
RegExp("\\c" + s, "u");
}, "ControlLetter escape in AtomEscape: '" + s + "'");
}
}
// "c ControlLetter" sequence in ClassEscape.
//
// ClassEscape[U] :: CharacterEscape[?U]
// CharacterEscape[U] :: c ControlLetter
assert.throws(SyntaxError, function() { RegExp("[\\c]", "u"); });
for (var cu = 0x00; cu <= 0x7f; ++cu) {
var s = String.fromCharCode(cu);
if (!isAlpha(s)) {
assert.throws(SyntaxError, function() {
RegExp("[\\c" + s + "]", "u");
}, "ControlLetter escape in ClassEscape: '" + s + "'");
}
}