Searched refs:string (Results 7776 - 7800 of 21454) sorted by relevance
1...<<311312313314315316317318319320>>...859
/third_party/typescript/tests/baselines/reference/ |
H A D | destructuringVariableDeclaration1ES6.js | 4 var {a1, a2}: { a1: number, a2: string } = { a1: 10, a2: "world" } 5 var [a3, [[a4]], a5]: [number, [[string]], boolean] = [1, [["hello"]], true]; 9 var { b1: { b11 } = { b11: "string" } } = { b1: { b11: "world" } }; 18 var [...c2] = [1,2,3, "string"]; 24 var [d1,d2] = [1,"string"] 30 var [d3, d4] = [1, "string", ...temp1]; 51 var { b1: { b11 } = { b11: "string" } } = { b1: { b11: "world" } };
59 var [...c2] = [1, 2, 3, "string"];
64 var [d1, d2] = [1, "string"];
69 var [d3, d4] = [1, "string", [all...] |
H A D | errorsOnUnionsOfOverlappingObjects01.js | 3 a: string; 8 b: string;
|
H A D | moduleAugmentationDeclarationEmit2.js | 13 let someAnotherValue: string; 72 let someAnotherValue: string;
|
H A D | nonPrimitiveInGeneric.js | 27 bound2<string>(); // expect error 81 declare var b: string;
|
H A D | optionalPropertiesTest.js | 2 var x: {p1:number; p2?:string; p3?:{():number;};}; 7 name?: string;
|
H A D | parameterInitializersForwardReferencing1.js | 2 let foo: string = ""; 38 function f8(foo1: string, bar = foo1) { }
|
H A D | privateClassPropertyAccessibleWithinNestedClass.js | 5 private x: string; 10 private static x: string;
|
H A D | privateNameAccessors.js | 4 set #prop(param: string) { } 8 constructor(name: string) {
|
H A D | privateNameStaticAccessors.js | 4 static set #prop(param: string) { } 8 constructor(name: string) {
|
H A D | protectedClassPropertyAccessibleWithinNestedClass.js | 5 protected x: string; 10 protected static x: string;
|
H A D | exportCodeGen.js | 38 export class C { name: string } 50 class C { name: string }
|
H A D | exportNonInitializedVariablesCommonJS.js | 8 export var c: string; 27 export var c1: string = 'a';
|
H A D | genericIsNeverEmptyObject.js | 4 function test<T extends { a: string }>(obj: T) { 10 let o2: { b: string, x: number } = test(o1);
|
H A D | identicalTypesNoDifferByCheckOrder.js | 3 x?: string; 11 x?: string;
|
H A D | implicitAnyFunctionInvocationWithAnyArguements.js | 8 function testFunctionExprC(subReplace: (s: string, ...arg: any[]) => string) { }
|
H A D | inOperatorWithValidOperands.js | 6 var a1: string; 8 var a3: string | number | symbol;
|
H A D | inferenceLimit.js | 11 public brokenMethod(field: string, value: string) {
|
H A D | instanceofOperatorWithInvalidOperands.js | 12 var a3: string; 29 var b3: string;
|
H A D | intersectionWithConflictingPrivates.js | 2 class A { private x: unknown; y?: string; } 3 class B { private x: unknown; y?: string; }
|
H A D | jsDeclarationsClassExtendsVisibility.js | 68 const a: string;
69 const b: string;
|
H A D | jsxChildrenGenericContextualTypes.js | 7 export interface IntrinsicElements { [key: string]: Element } 15 const ElemLit = <T extends string>(p: LitProps<T>) => <div></div>;
|
H A D | ClassAndModuleWithSameNameAndCommonRoot.js | 30 id: string; 40 var a: { id: string };
|
H A D | additionOperatorWithStringAndEveryType.js | 7 var d: string; 12 var x: string; 14 // string could plus every type, and the result is always string 15 // string as left operand 24 // string as right operand 56 // string could plus every type, and the result is always string
57 // string as left operand
65 // string a [all...] |
H A D | tsxGenericAttributesType3.js | 4 class B1<T extends { x: string } = { x:string } > extends React.Component<T, {}> {
|
H A D | tsxGenericAttributesType6.js | 4 class B1<T extends { x: string } = { x:string } > extends React.Component<T, {}> {
|
Completed in 17 milliseconds
1...<<311312313314315316317318319320>>...859