TypeScript/tests/baselines/reference/unicodeExtendedEscapesInRegularExpressions08_ES5.types

10 lines
365 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/unicodeExtendedEscapes/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;
2015-04-13 23:01:57 +02:00
>x : RegExp, Symbol(x, Decl(unicodeExtendedEscapesInRegularExpressions08_ES5.ts, 4, 3))
2015-04-13 21:36:11 +02:00
>/\u{FFFF}/g : RegExp