Home
last modified time | relevance | path

Searched defs:x3 (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/third_party/typescript/tests/baselines/reference/
DcontextualTypeWithUnionTypeIndexSignatures.js51 var x3: IWithNoNumberIndexSignature | IWithNumberIndexSignature1 = { 1: a => a }; // a should be nu… variable
53 var x3: IWithNoNumberIndexSignature | IWithNumberIndexSignature1 = { 0: "hello" }; variable
76 var x3 = { 1: function (a) { return a; } }; // a should be number variable
77 var x3 = { 0: function (a) { return a; } }; // a should be number (because of index signature of IW… variable
78 var x3 = { 0: "hello" }; variable
DobjectLiteralShorthandPropertiesES6.js12 var x3 = { variable
17 x3, property
31 var x3 = { variable
36 x3, property
DobjectLiteralShorthandProperties.js12 var x3 = { variable
17 x3, property
31 var x3 = { variable
36 x3: x3, property
DcontextualTypingOfArrayLiterals1.js6 var x3: I = [new Date(), 1]; variable
12 var x3 = [new Date(), 1]; variable
DsystemObjectShorthandRename.js11 const x3 = x constant
12 const b = {x3} field
41 b = { x3 }; field
DgenericObjectCreationWithoutTypeArgs.js8 var x3 = new SS(); // OK variable
20 var x3 = new SS(); // OK variable
DdestructuringParameterProperties5.js6 constructor(public [{ x1, x2, x3 }, y, z]: TupleType1) { field
12 var a = new C1([{ x1: 10, x2: "", x3: true }, "", false]); property
24 var a = new C1([{ x1: 10, x2: "", x3: true }, "", false]); property
DcompoundAssignmentLHSIsReference.js15 var x3: { a: number }; variable
48 var x3; variable
DassignmentLHSIsReference.js13 var x3: { a: string }; variable
36 var x3; variable
DtsxGenericArrowFunctionParsing.js17 var x3 = <T, T1>() => {}; variable
39 var x3 = function () { }; function
DcompoundAdditionAssignmentLHSCannotBeAssigned.js11 var x3: E; variable
32 var x3; variable
DcompoundExponentiationAssignmentLHSIsReference.js13 var x3: { a: number }; variable
39 var x3; variable
DtypeAliases.js13 var x3: boolean; variable
14 var x3: T3; variable
89 var x3; variable
90 var x3; variable
DcompoundExponentiationAssignmentLHSCanBeAssigned1.js22 var x3: E; variable
51 var x3; variable
DcompoundAdditionAssignmentWithInvalidOperands.js24 var x3: void; variable
66 var x3; variable
DcompoundArithmeticAssignmentLHSCanBeAssigned.js22 var x3: E; variable
51 var x3; variable
DarrayTypeOfFunctionTypes.js14 var x3: Array<() => string>; variable
29 var x3; variable
DcompoundArithmeticAssignmentWithInvalidOperands.js29 var x3: {}; variable
91 var x3; variable
DcompoundExponentiationAssignmentLHSCannotBeAssigned.js29 var x3: {}; variable
91 var x3; variable
DarrayTypeOfFunctionTypes2.js14 var x3: Array<new () => string>; variable
29 var x3; variable
DfatarrowfunctionsErrors.js12 var x3 = (a:number) {}; variable
35 var x3 = function (a) { }; function
DimplicitAnyDeclareTypePropertyWithoutType.js11 var x3: (x3: string, y3) => void ; // error at "y3" variable
31 var x3; // error at "y3" variable
DinvalidTypeOfTarget.js4 var x3: typeof 1; variable
15 var x3; variable
/third_party/typescript/tests/cases/conformance/types/union/
DcontextualTypeWithUnionTypeIndexSignatures.ts50 var x3: IWithNoNumberIndexSignature | IWithNumberIndexSignature1 = { 1: a => a }; // a should be nu… variable
51 var x3: IWithNoNumberIndexSignature | IWithNumberIndexSignature1 = { 0: a => a }; // a should be nu… variable
52 var x3: IWithNoNumberIndexSignature | IWithNumberIndexSignature1 = { 0: "hello" }; variable
/third_party/typescript/tests/cases/compiler/
DaugmentedTypesVar.ts9 var x3 = 1; variable
10 var x3 = () => { } // error variable

12345678910>>...13