TypeScript/tests/baselines/reference/unicodeExtendedEscapesInRegularExpressions08_ES5.js

14 lines
395 B
TypeScript

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