Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 25 of 1663) sorted by relevance

12345678910>>...67

/third_party/typescript/tests/baselines/reference/
DexponentiationOperatorInTemplateStringWithSyntaxError2.types2 var t1 = 10;
3 >t1 : number
15 `hello ${-t1 ** t2 - t1}`;
16 >`hello ${-t1 ** t2 - t1}` : string
17 >-t1 ** t2 - t1 : number
18 >-t1 ** t2 : number
19 >-t1 : number
20 >t1 : number
22 >t1 : number
24 `hello ${-++t1 ** t2 - t1}`;
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError3.types2 var t1 = 10;
3 >t1 : number
15 `${-t1 ** t2 - t1} world`;
16 >`${-t1 ** t2 - t1} world` : string
17 >-t1 ** t2 - t1 : number
18 >-t1 ** t2 : number
19 >-t1 : number
20 >t1 : number
22 >t1 : number
24 `${-++t1 ** t2 - t1} world`;
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError1.types2 var t1 = 10;
3 >t1 : 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
20 >typeof t1 : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "func…
21 >t1 : number
22 >t2 ** t1 : number
24 >t1 : number
[all …]
DemitExponentiationOperatorInTemplateString1ES6.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** t2}`;
15 >`${t1 ** t2}` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `${t1 ** t2 ** t1}`;
21 >`${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DemitExponentiationOperatorInTemplateString1.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** t2}`;
15 >`${t1 ** t2}` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `${t1 ** t2 ** t1}`;
21 >`${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DemitExponentiationOperatorInTempalteString4ES6.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** -t2} world`;
15 >`${t1 ** -t2} world` : string
16 >t1 ** -t2 : number
17 >t1 : number
21 `${(-t1) ** t2 - t1} world`;
22 >`${(-t1) ** t2 - t1} world` : string
23 >(-t1) ** t2 - t1 : number
24 >(-t1) ** t2 : number
[all …]
DemitExponentiationOperatorInTempalteString4.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** -t2} world`;
15 >`${t1 ** -t2} world` : string
16 >t1 ** -t2 : number
17 >t1 : number
21 `${(-t1) ** t2 - t1} world`;
22 >`${(-t1) ** t2 - t1} world` : string
23 >(-t1) ** t2 - t1 : number
24 >(-t1) ** t2 : number
[all …]
DemitExponentiationOperatorInTemplateString2ES6.types2 var t1 = 10;
3 >t1 : number
14 `hello ${t1 ** t2}`;
15 >`hello ${t1 ** t2}` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `hello ${t1 ** t2 ** t1}`;
21 >`hello ${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DemitExponentiationOperatorInTemplateString3.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** t2} world`;
15 >`${t1 ** t2} world` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `${t1 ** t2 ** t1} world`;
21 >`${t1 ** t2 ** t1} world` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DemitExponentiationOperatorInTemplateString3ES6.types2 var t1 = 10;
3 >t1 : number
14 `${t1 ** t2} world`;
15 >`${t1 ** t2} world` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `${t1 ** t2 ** t1} world`;
21 >`${t1 ** t2 ** t1} world` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DemitExponentiationOperatorInTemplateString2.types2 var t1 = 10;
3 >t1 : number
14 `hello ${t1 ** t2}`;
15 >`hello ${t1 ** t2}` : string
16 >t1 ** t2 : number
17 >t1 : number
20 `hello ${t1 ** t2 ** t1}`;
21 >`hello ${t1 ** t2 ** t1}` : string
22 >t1 ** t2 ** t1 : number
23 >t1 : number
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError2.js2 var t1 = 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 …]
DexponentiationOperatorInTemplateStringWithSyntaxError3.js2 var t1 = 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 …]
DexponentiationOperatorInTemplateStringWithSyntaxError1.js2 var t1 = 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.js2 var t1 = 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 …]
DemitExponentiationOperatorInTemplateString2ES6.js2 var t1 = 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 …]
DemitExponentiationOperatorInTemplateString3ES6.js2 var t1 = 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 …]
DemitExponentiationOperatorInTemplateString3.js2 var t1 = 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 …]
DemitExponentiationOperatorInTemplateString1.js2 var t1 = 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.js2 var t1 = 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 …]
DexponentiationOperatorInTemplateStringWithSyntaxError3.symbols2 var t1 = 10;
3 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
13 `${-t1 ** t2 - t1} world`;
14 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
16 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
18 `${-++t1 ** t2 - t1} world`;
19 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
21 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
23 `${-t1++ ** t2 - t1} world`;
24 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError3.ts, 0, 3))
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError1.symbols2 var t1 = 10;
3 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
13 `${1 + typeof t1 ** t2 ** t1}`;
14 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
16 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
18 `${-t1 ** t2 - t1}`;
19 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
21 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
23 `${-++t1 ** t2 - t1}`;
24 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError1.ts, 0, 3))
[all …]
DexponentiationOperatorInTemplateStringWithSyntaxError2.symbols2 var t1 = 10;
3 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
13 `hello ${-t1 ** t2 - t1}`;
14 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
16 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
18 `hello ${-++t1 ** t2 - t1}`;
19 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
21 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
23 `hello ${-t1++ ** t2 - t1}`;
24 >t1 : Symbol(t1, Decl(exponentiationOperatorInTemplateStringWithSyntaxError2.ts, 0, 3))
[all …]
DemitExponentiationOperatorInTempalteString4ES6.js2 var t1 = 10; variable
7 `${t1 ** -t2} world`;
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`;
15 `${t1 ** -t2} hello world ${t1 ** -t2}`;
16 `${(-t1) ** t2 - t1} hello world ${(-t1) ** t2 - t1}`;
17 `${(-++t1) ** t2 - t1} hello world ${t1 ** (-++t1) **- t1}`;
[all …]
DemitExponentiationOperatorInTempalteString4.js2 var t1 = 10; variable
7 `${t1 ** -t2} world`;
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`;
15 `${t1 ** -t2} hello world ${t1 ** -t2}`;
16 `${(-t1) ** t2 - t1} hello world ${(-t1) ** t2 - t1}`;
17 `${(-++t1) ** t2 - t1} hello world ${t1 ** (-++t1) **- t1}`;
[all …]

12345678910>>...67