/third_party/typescript/tests/baselines/reference/ |
D | propertyAssignment.symbols | 20 var bar3: { x : number; } 21 >bar3 : Symbol(bar3, Decl(propertyAssignment.ts, 7, 3)) 34 foo3 = bar3; // should be an error 36 >bar3 : Symbol(bar3, Decl(propertyAssignment.ts, 7, 3))
|
D | propertyAssignment.js | 9 var bar3: { x : number; } variable 15 foo3 = bar3; // should be an error 23 var bar3; variable 26 foo3 = bar3; // should be an error
|
D | propertyAssignment.types | 21 var bar3: { x : number; } 22 >bar3 : { x: number; } 37 foo3 = bar3; // should be an error 38 >foo3 = bar3 : { x: number; } 40 >bar3 : { x: number; }
|
D | computedPropertiesInDestructuring2_ES6.symbols | 5 let {[foo2()]: bar3} = {}; 7 >bar3 : Symbol(bar3, Decl(computedPropertiesInDestructuring2_ES6.ts, 1, 5))
|
D | computedPropertiesInDestructuring2.symbols | 5 let {[foo2()]: bar3} = {}; 7 >bar3 : Symbol(bar3, Decl(computedPropertiesInDestructuring2.ts, 1, 5))
|
D | computedPropertiesInDestructuring1_ES6.js | 10 let {[foo2()]: bar3} = {bar: "bar"}; 30 ({[foo2()]: bar3} = {bar: "bar"}); 46 let { [foo2()]: bar3 } = { bar: "bar" }; 60 ({ [foo2()]: bar3 } = { bar: "bar" });
|
D | await_unaryExpression_es2017_2.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es2017_2.ts, 6, 1))
|
D | await_unaryExpression_es6_2.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es6_2.ts, 6, 1))
|
D | await_unaryExpression_es6.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es6.ts, 6, 1))
|
D | await_unaryExpression_es2017.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es2017.ts, 6, 1))
|
D | await_unaryExpression_es2017_1.symbols | 20 async function bar3() { 21 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es2017_1.ts, 10, 1))
|
D | await_unaryExpression_es6_1.symbols | 20 async function bar3() { 21 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es6_1.ts, 10, 1))
|
D | downlevelLetConst13.js | 9 export let {a: bar3} = { a: 1 }; 24 exports.M = exports.bar4 = exports.bar3 = exports.bar2 = exports.bar1 = exports.bar = exports.foo =… 30 exports.bar3 = { a: 1 }.a;
|
D | await_unaryExpression_es6_3.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es6_3.ts, 6, 1))
|
D | await_unaryExpression_es2017_3.symbols | 14 async function bar3() { 15 >bar3 : Symbol(bar3, Decl(await_unaryExpression_es2017_3.ts, 6, 1))
|
D | computedPropertiesInDestructuring1.js | 9 let {[foo2()]: bar3} = {bar: "bar"}; 29 ({[foo2()]: bar3} = {bar: "bar"}); 47 var _q = { bar: "bar" }, _r = foo2(), bar3 = _q[_r]; variable 71 (_c = { bar: "bar" }, _d = foo2(), bar3 = _c[_d]);
|
D | computedPropertiesInDestructuring1_ES6.types | 33 let {[foo2()]: bar3} = {bar: "bar"}; 36 >bar3 : any 134 ({[foo2()]: bar3} = {bar: "bar"}); 135 >({[foo2()]: bar3} = {bar: "bar"}) : { bar: string; } 136 >{[foo2()]: bar3} = {bar: "bar"} : { bar: string; } 137 >{[foo2()]: bar3} : { [x: string]: any; } 141 >bar3 : any
|
D | computedPropertiesInDestructuring1.types | 26 let {[foo2()]: bar3} = {bar: "bar"}; 29 >bar3 : any 127 ({[foo2()]: bar3} = {bar: "bar"}); 128 >({[foo2()]: bar3} = {bar: "bar"}) : { bar: string; } 129 >{[foo2()]: bar3} = {bar: "bar"} : { bar: string; } 130 >{[foo2()]: bar3} : { [x: string]: any; } 134 >bar3 : any
|
D | computedPropertiesInDestructuring2_ES6.js | 3 let {[foo2()]: bar3} = {}; 7 let { [foo2()]: bar3 } = {};
|
D | computedPropertiesInDestructuring2.js | 3 let {[foo2()]: bar3} = {}; 7 var _a = {}, _b = foo2(), bar3 = _a[_b]; variable
|
D | destructuringSameNames.js | 24 let { bar3: foo3, foo3 } = { foo3: 30, bar3: 330 }; property 53 var _s = { foo3: 30, bar3: 330 }, foo3 = _s.bar3, foo3 = _s.foo3; property
|
D | await_unaryExpression_es2017_2.js | 10 async function bar3() { function 21 async function bar3() {
|
D | await_unaryExpression_es2017.js | 10 async function bar3() { function 25 async function bar3() {
|
D | computedPropertiesInDestructuring1_ES6.symbols | 24 let {[foo2()]: bar3} = {bar: "bar"}; 26 >bar3 : Symbol(bar3, Decl(computedPropertiesInDestructuring1_ES6.ts, 8, 5)) 93 ({[foo2()]: bar3} = {bar: "bar"}); 96 >bar3 : Symbol(bar3, Decl(computedPropertiesInDestructuring1_ES6.ts, 8, 5))
|
/third_party/typescript/tests/cases/compiler/ |
D | propertyAssignment.ts | 10 var bar3: { x : number; } variable 16 foo3 = bar3; // should be an error
|