Add test for \0 in Unicode patterns (#2569)

This commit is contained in:
Alexey Shvayka 2020-04-11 01:41:59 +03:00 committed by GitHub
parent 156d1b68fd
commit 4a8e49b3ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: prod-CharacterEscape
description: >
Null character escape is permitted in Unicode patterns.
info: |
CharacterEscape[U] ::
ControlEscape
c ControlLetter
0 [lookahead DecimalDigit]
HexEscapeSequence
RegExpUnicodeEscapeSequence[?U]
IdentityEscape[?U]
DecimalDigit :: one of
0 1 2 3 4 5 6 7 8 9
---*/
var nullChar = String.fromCharCode(0);
assert.sameValue(/\0/u.exec(nullChar)[0], nullChar);
assert(/^\0a$/u.test('\0a'));
assert.sameValue('\x00②'.match(/\0②/u)[0], '\x00②');
assert.sameValue('\u0000፬'.search(/\0፬$/u), 0);