summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/unicode_restricted_identity_escape_alpha.js
blob: b226c0a54500c090ec0bdcbe406bd6a6dbdd09ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// 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 - Identity escape with basic latin letters
info: |
    The compatibility extensions defined in B.1.4 Regular Expressions Patterns
    are not applied for Unicode RegExps.
    Tested extension: "IdentityEscape[U] :: [~U] SourceCharacter but not c"

    Forbidden extension (16.1):
    The RegExp pattern grammars in 21.2.1 and B.1.4 must not be extended to recognize any of the
    source characters A-Z or a-z as IdentityEscape[U] when the U grammar parameter is present.
es6id: 21.1.2
---*/

function isValidAlphaEscapeInAtom(s) {
  switch (s) {
    // Assertion [U] :: \b
    case "b":
    // Assertion [U] :: \B
    case "B":
    // ControlEscape :: one of f n r t v
    case "f":
    case "n":
    case "r":
    case "t":
    case "v":
    // CharacterClassEscape :: one of d D s S w W
    case "d":
    case "D":
    case "s":
    case "S":
    case "w":
    case "W":
      return true;
    default:
      return false;
  }
}

function isValidAlphaEscapeInClass(s) {
  switch (s) {
    // ClassEscape[U] :: b
    case "b":
    // ControlEscape :: one of f n r t v
    case "f":
    case "n":
    case "r":
    case "t":
    case "v":
    // CharacterClassEscape :: one of d D s S w W
    case "d":
    case "D":
    case "s":
    case "S":
    case "w":
    case "W":
      return true;
    default:
      return false;
  }
}

// IdentityEscape in AtomEscape
for (var cu = 0x41 /* A */; cu <= 0x5a /* Z */; ++cu) {
  var s = String.fromCharCode(cu);
  if (!isValidAlphaEscapeInAtom(s)) {
    assert.throws(SyntaxError, function() {
      RegExp("\\" + s, "u");
    }, "IdentityEscape in AtomEscape: '" + s + "'");
  }
}
for (var cu = 0x61 /* a */; cu <= 0x7a /* z */; ++cu) {
  var s = String.fromCharCode(cu);
  if (!isValidAlphaEscapeInAtom(s)) {
    assert.throws(SyntaxError, function() {
      RegExp("\\" + s, "u");
    }, "IdentityEscape in AtomEscape: '" + s + "'");
  }
}


// IdentityEscape in ClassEscape
for (var cu = 0x41 /* A */; cu <= 0x5a /* Z */; ++cu) {
  var s = String.fromCharCode(cu);
  if (!isValidAlphaEscapeInClass(s)) {
    assert.throws(SyntaxError, function() {
      RegExp("[\\" + s + "]", "u");
    }, "IdentityEscape in ClassEscape: '" + s + "'");
  }
}
for (var cu = 0x61 /* a */; cu <= 0x7a /* z */; ++cu) {
  var s = String.fromCharCode(cu);
  if (!isValidAlphaEscapeInClass(s)) {
    assert.throws(SyntaxError, function() {
      RegExp("[\\" + s + "]", "u");
    }, "IdentityEscape in ClassEscape: '" + s + "'");
  }
}

reportCompare(0, 0);