TypeScript/tests/baselines/reference/unicodeExtendedEscapesInRegularExpressions09_ES5.types

10 lines
368 B
Plaintext
Raw Normal View History

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