TypeScript/tests/baselines/reference/unicodeExtendedEscapesInRegularExpressions09_ES5.js

14 lines
399 B
TypeScript

//// [unicodeExtendedEscapesInRegularExpressions09_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (10000 == 65536)
var x = /\u{10000}/g;
//// [unicodeExtendedEscapesInRegularExpressions09_ES5.js]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (10000 == 65536)
var x = /\u{10000}/g;