summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/unicode_character_class_backspace_escape.js
blob: aefd40fcb324fa16e14a3aa25799f645192c549d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: prod-ClassEscapes
description: >
  \b escape inside CharacterClass is valid in Unicode patterns (unlike \B).
info: |
  ClassEscape[U] ::
    b

  Static Semantics: CharacterValue

  ClassEscape :: b

  1. Return the code point value of U+0008 (BACKSPACE).
---*/

assert(/[\b]/u.test('\u0008'));
assert(/[\b-A]/u.test('A'));

reportCompare(0, 0);