/third_party/typescript/tests/baselines/reference/ |
D | emitExponentiationOperatorInTemplateString1.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString1ES6.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString2.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString2ES6.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString3ES6.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString3.types | 6 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError3.types | 6 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError1.types | 6 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError2.types | 6 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 …]
|
D | emitExponentiationOperatorInTemplateString1.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString3ES6.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString2ES6.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString1ES6.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString2.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString3.js | 3 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 …]
|
D | emitExponentiationOperatorInTempalteString4.types | 6 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 …]
|
D | emitExponentiationOperatorInTempalteString4ES6.types | 6 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError3.js | 3 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError2.js | 3 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 …]
|
D | exponentiationOperatorInTemplateStringWithSyntaxError1.js | 3 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 …]
|
D | emitExponentiationOperatorInTemplateString1ES6.symbols | 5 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 …]
|
D | emitExponentiationOperatorInTemplateString2.symbols | 5 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 …]
|
D | emitExponentiationOperatorInTemplateString3ES6.symbols | 5 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 …]
|
D | emitExponentiationOperatorInTemplateString3.symbols | 5 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 …]
|
D | emitExponentiationOperatorInTemplateString2ES6.symbols | 5 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 …]
|