Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 25 of 1341) sorted by relevance

12345678910>>...54

/third_party/typescript/tests/baselines/reference/
DemitExponentiationOperatorInTemplateString1.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** t2}`;
15 >`${t1 ** t2}` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `${t1 ** t2 ** t1}`;
21 >`${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DemitExponentiationOperatorInTemplateString1ES6.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** t2}`;
15 >`${t1 ** t2}` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `${t1 ** t2 ** t1}`;
21 >`${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DemitExponentiationOperatorInTemplateString2.types6 var t2 = 10;
7 >t2 : number
14 `hello ${t1 ** t2}`;
15 >`hello ${t1 ** t2}` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `hello ${t1 ** t2 ** t1}`;
21 >`hello ${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DemitExponentiationOperatorInTemplateString2ES6.types6 var t2 = 10;
7 >t2 : number
14 `hello ${t1 ** t2}`;
15 >`hello ${t1 ** t2}` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `hello ${t1 ** t2 ** t1}`;
21 >`hello ${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DemitExponentiationOperatorInTemplateString3ES6.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** t2} world`;
15 >`${t1 ** t2} world` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `${t1 ** t2 ** t1} world`;
21 >`${t1 ** t2 ** t1} world` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DemitExponentiationOperatorInTemplateString3.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** t2} world`;
15 >`${t1 ** t2} world` : string
16 >t1 ** t2 : number
18 >t2 : number
20 `${t1 ** t2 ** t1} world`;
21 >`${t1 ** t2 ** t1} world` : string
22 >t1 ** t2 ** t1 : number
24 >t2 ** t1 : number
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError3.types6 var t2 = 10;
7 >t2 : number
15 `${-t1 ** t2 - t1} world`;
16 >`${-t1 ** t2 - t1} world` : string
17 >-t1 ** t2 - t1 : number
18 >-t1 ** t2 : number
21 >t2 : number
24 `${-++t1 ** t2 - t1} world`;
25 >`${-++t1 ** t2 - t1} world` : string
26 >-++t1 ** t2 - t1 : number
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError1.types6 var t2 = 10;
7 >t2 : number
15 `${1 + typeof t1 ** t2 ** t1}`;
16 >`${1 + typeof t1 ** t2 ** t1}` : string
17 >1 + typeof t1 ** t2 ** t1 : number
19 >typeof t1 ** t2 ** t1 : number
22 >t2 ** t1 : number
23 >t2 : number
26 `${-t1 ** t2 - t1}`;
27 >`${-t1 ** t2 - t1}` : string
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError2.types6 var t2 = 10;
7 >t2 : number
15 `hello ${-t1 ** t2 - t1}`;
16 >`hello ${-t1 ** t2 - t1}` : string
17 >-t1 ** t2 - t1 : number
18 >-t1 ** t2 : number
21 >t2 : number
24 `hello ${-++t1 ** t2 - t1}`;
25 >`hello ${-++t1 ** t2 - t1}` : string
26 >-++t1 ** t2 - t1 : number
[all …]
DemitExponentiationOperatorInTemplateString1.js3 var t2 = 10; variable
7 `${t1 ** t2}`;
8 `${t1 ** t2 ** t1}`;
9 `${t1 + t2 ** t1}`;
10 `${t1 ** t2 + t1}`;
11 `${t1 + t2 ** t2 + t1 }`;
12 `${typeof (t1 ** t2 ** t1) }`;
13 `${1 + typeof (t1 ** t2 ** t1) }`;
15 `${t1 ** t2}${t1 ** t2}`;
16 `${t1 ** t2 ** t1}${t1 ** t2 ** t1}`;
[all …]
DemitExponentiationOperatorInTemplateString3ES6.js3 var t2 = 10; variable
7 `${t1 ** t2} world`;
8 `${t1 ** t2 ** t1} world`;
9 `${t1 + t2 ** t1} world`;
10 `${t1 ** t2 + t1} world`;
11 `${t1 + t2 ** t2 + t1 } world`;
12 `${typeof (t1 ** t2 ** t1) } world`;
13 `${1 + typeof (t1 ** t2 ** t1) } world`;
15 `${t1 ** t2}${t1 ** t2} world`;
16 `${t1 ** t2 ** t1}${t1 ** t2 ** t1} world`;
[all …]
DemitExponentiationOperatorInTemplateString2ES6.js3 var t2 = 10; variable
7 `hello ${t1 ** t2}`;
8 `hello ${t1 ** t2 ** t1}`;
9 `hello ${t1 + t2 ** t1}`;
10 `hello ${t1 ** t2 + t1}`;
11 `hello ${t1 + t2 ** t2 + t1 }`;
12 `hello ${typeof (t1 ** t2 ** t1) }`;
13 `hello ${1 + typeof (t1 ** t2 ** t1) }`;
15 `hello ${t1 ** t2}${t1 ** t2}`;
16 `hello ${t1 ** t2 ** t1}${t1 ** t2 ** t1}`;
[all …]
DemitExponentiationOperatorInTemplateString1ES6.js3 var t2 = 10; variable
7 `${t1 ** t2}`;
8 `${t1 ** t2 ** t1}`;
9 `${t1 + t2 ** t1}`;
10 `${t1 ** t2 + t1}`;
11 `${t1 + t2 ** t2 + t1 }`;
12 `${typeof (t1 ** t2 ** t1) }`;
13 `${1 + typeof (t1 ** t2 ** t1) }`;
15 `${t1 ** t2}${t1 ** t2}`;
16 `${t1 ** t2 ** t1}${t1 ** t2 ** t1}`;
[all …]
DemitExponentiationOperatorInTemplateString2.js3 var t2 = 10; variable
7 `hello ${t1 ** t2}`;
8 `hello ${t1 ** t2 ** t1}`;
9 `hello ${t1 + t2 ** t1}`;
10 `hello ${t1 ** t2 + t1}`;
11 `hello ${t1 + t2 ** t2 + t1 }`;
12 `hello ${typeof (t1 ** t2 ** t1) }`;
13 `hello ${1 + typeof (t1 ** t2 ** t1) }`;
15 `hello ${t1 ** t2}${t1 ** t2}`;
16 `hello ${t1 ** t2 ** t1}${t1 ** t2 ** t1}`;
[all …]
DemitExponentiationOperatorInTemplateString3.js3 var t2 = 10; variable
7 `${t1 ** t2} world`;
8 `${t1 ** t2 ** t1} world`;
9 `${t1 + t2 ** t1} world`;
10 `${t1 ** t2 + t1} world`;
11 `${t1 + t2 ** t2 + t1 } world`;
12 `${typeof (t1 ** t2 ** t1) } world`;
13 `${1 + typeof (t1 ** t2 ** t1) } world`;
15 `${t1 ** t2}${t1 ** t2} world`;
16 `${t1 ** t2 ** t1}${t1 ** t2 ** t1} world`;
[all …]
DemitExponentiationOperatorInTempalteString4.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** -t2} world`;
15 >`${t1 ** -t2} world` : string
16 >t1 ** -t2 : number
18 >-t2 : number
19 >t2 : number
21 `${(-t1) ** t2 - t1} world`;
22 >`${(-t1) ** t2 - t1} world` : string
23 >(-t1) ** t2 - t1 : number
[all …]
DemitExponentiationOperatorInTempalteString4ES6.types6 var t2 = 10;
7 >t2 : number
14 `${t1 ** -t2} world`;
15 >`${t1 ** -t2} world` : string
16 >t1 ** -t2 : number
18 >-t2 : number
19 >t2 : number
21 `${(-t1) ** t2 - t1} world`;
22 >`${(-t1) ** t2 - t1} world` : string
23 >(-t1) ** t2 - t1 : number
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError3.js3 var t2 = 10; variable
8 `${-t1 ** t2 - t1} world`;
9 `${-++t1 ** t2 - t1} world`;
10 `${-t1++ ** t2 - t1} world`;
11 `${!t1 ** t2 ** --t1 } world`;
12 `${typeof t1 ** t2 ** t1} world`;
13 `${1 + typeof t1 ** t2 ** t1} world`;
15 `${-t1 ** t2 - t1}${-t1 ** t2 - t1} world`;
16 `${-++t1 ** t2 - t1}${-++t1 ** t2 - t1} world`;
17 `${-t1++ ** t2 - t1}${-t1++ ** t2 - t1} world`;
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError2.js3 var t2 = 10; variable
8 `hello ${-t1 ** t2 - t1}`;
9 `hello ${-++t1 ** t2 - t1}`;
10 `hello ${-t1++ ** t2 - t1}`;
11 `hello ${!t1 ** t2 ** --t1 }`;
12 `hello ${typeof t1 ** t2 ** t1}`;
13 `hello ${1 + typeof t1 ** t2 ** t1}`;
15 `hello ${-t1 ** t2 - t1}${-t1 ** t2 - t1}`;
16 `hello ${-++t1 ** t2 - t1}${-++t1 ** t2 - t1}`;
17 `hello ${-t1++ ** t2 - t1}${-t1++ ** t2 - t1}`;
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError1.js3 var t2 = 10; variable
8 `${1 + typeof t1 ** t2 ** t1}`;
9 `${-t1 ** t2 - t1}`;
10 `${-++t1 ** t2 - t1}`;
11 `${-t1++ ** t2 - t1}`;
12 `${!t1 ** t2 ** --t1 }`;
13 `${typeof t1 ** t2 ** t1}`;
15 `${-t1 ** t2 - t1}${-t1 ** t2 - t1}`;
16 `${-++t1 ** t2 - t1}${-++t1 ** t2 - t1}`;
17 `${-t1++ ** t2 - t1}${-t1++ ** t2 - t1}`;
[all …]
DemitExponentiationOperatorInTemplateString1ES6.symbols5 var t2 = 10;
6 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString1ES6.ts, 1, 3))
12 `${t1 ** t2}`;
14 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString1ES6.ts, 1, 3))
16 `${t1 ** t2 ** t1}`;
18 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString1ES6.ts, 1, 3))
21 `${t1 + t2 ** t1}`;
23 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString1ES6.ts, 1, 3))
26 `${t1 ** t2 + t1}`;
28 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString1ES6.ts, 1, 3))
[all …]
DemitExponentiationOperatorInTemplateString2.symbols5 var t2 = 10;
6 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2.ts, 1, 3))
12 `hello ${t1 ** t2}`;
14 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2.ts, 1, 3))
16 `hello ${t1 ** t2 ** t1}`;
18 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2.ts, 1, 3))
21 `hello ${t1 + t2 ** t1}`;
23 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2.ts, 1, 3))
26 `hello ${t1 ** t2 + t1}`;
28 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2.ts, 1, 3))
[all …]
DemitExponentiationOperatorInTemplateString3ES6.symbols5 var t2 = 10;
6 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3ES6.ts, 1, 3))
12 `${t1 ** t2} world`;
14 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3ES6.ts, 1, 3))
16 `${t1 ** t2 ** t1} world`;
18 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3ES6.ts, 1, 3))
21 `${t1 + t2 ** t1} world`;
23 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3ES6.ts, 1, 3))
26 `${t1 ** t2 + t1} world`;
28 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3ES6.ts, 1, 3))
[all …]
DemitExponentiationOperatorInTemplateString3.symbols5 var t2 = 10;
6 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3.ts, 1, 3))
12 `${t1 ** t2} world`;
14 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3.ts, 1, 3))
16 `${t1 ** t2 ** t1} world`;
18 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3.ts, 1, 3))
21 `${t1 + t2 ** t1} world`;
23 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3.ts, 1, 3))
26 `${t1 ** t2 + t1} world`;
28 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString3.ts, 1, 3))
[all …]
DemitExponentiationOperatorInTemplateString2ES6.symbols5 var t2 = 10;
6 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2ES6.ts, 1, 3))
12 `hello ${t1 ** t2}`;
14 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2ES6.ts, 1, 3))
16 `hello ${t1 ** t2 ** t1}`;
18 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2ES6.ts, 1, 3))
21 `hello ${t1 + t2 ** t1}`;
23 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2ES6.ts, 1, 3))
26 `hello ${t1 ** t2 + t1}`;
28 >t2 : Symbol(t2, Decl(emitExponentiationOperatorInTemplateString2ES6.ts, 1, 3))
[all …]

12345678910>>...54