mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
23 lines
697 B
JavaScript
23 lines
697 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* CharacterEscape :: IdentityEscapeSequence :: SourceCharacter but not IdentifierPart
|
|
*
|
|
* @path ch15/15.10/15.10.2/15.10.2.10/S15.10.2.10_A5.1_T1.js
|
|
* @description Tested string is "~`!@#$%^&*()-+={[}]|\\:;'<,>./?" + '"'
|
|
*/
|
|
|
|
//CHECK#1
|
|
var non_ident = "~`!@#$%^&*()-+={[}]|\\:;'<,>./?" + '"';
|
|
var k = -1;
|
|
do {
|
|
k++;
|
|
arr = new RegExp("\\" + non_ident[k], "g").exec(non_ident);
|
|
} while ((arr !== null) && (arr[0] === non_ident[k]))
|
|
|
|
if (non_ident.length !== k) {
|
|
$ERROR('#1: IdentityEscapeSequence :: SourceCharacter but not IdentifierPart');
|
|
}
|
|
|