/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | classWithPublicProperty.ts | 72 let r7: string = C.f(); variable
|
D | genericCallWithOverloadedFunctionTypedArguments.ts | 48 let r7 = foo5(a); // any => string (+1 overload) variable
|
D | typeOfThisInStaticMembers.ts | 90 let r7 = new t2(''); variable
|
D | genericCallWithOverloadedConstructorTypedArguments.ts | 54 let r7 = foo5(b); // new any => string; new(x:number) => any variable
|
D | genericCallWithObjectTypeArgsAndConstraints2.ts | 116 let r7 = f3(null, x => x); // any variable
|
D | exponentiationOperatorWithEnum.ts | 74 let r7 = E.a ** b; variable
|
D | genericCallTypeArgumentInference.ts | 146 let r7 = c.foo4('', true); // string variable 222 let r7 = i.foo4('', true); // string variable
|
D | exponentiationOperatorWithEnumUnion.ts | 78 let r7 = E.a ** b; variable
|
D | objectTypePropertyAccess.ts | 73 let r7 = i['bar']; variable
|
D | classExtendingClass.ts | 73 let r7 = d2.thing(''); variable
|
D | genericCallWithNonSymmetricSubtypes.ts | 114 let r7 = foo(s1, s2); // (x: Object) => string; variable
|
D | additionOperatorWithNumberAndEnum.ts | 69 let r7 = E.a + E.b; variable
|
D | genericCallWithConstraintsTypeArgumentInference.ts | 166 let r7 = c.foo4(d1, d2); // Base variable 239 let r7 = i.foo4(d1, d2); // Base variable
|
D | callGenericFunctionWithZeroTypeArguments.ts | 105 let r7 = i2.f(1); variable
|
D | nullIsSubtypeOfEverythingButUndefined.ts | 145 let r7 = true ? () => { } : null; variable 152 let r7 = true ? null : () => { }; variable
|
D | arrayOfFunctionTypes3.ts | 121 let r7 = r6(''); // any not string variable
|
D | stringIndexingResults.ts | 83 let r7 = a['y']; variable
|
D | bestCommonTypeOfConditionalExpressions.ts | 84 let r7: (x: Object) => void = true ? (x: number) => { } : (x: Object) => { }; variable
|
D | additionOperatorWithStringAndEveryType.ts | 85 let r7 = x + g; variable
|
D | additionOperatorWithAnyAndEveryType.ts | 82 let r7 = c + a; variable
|
D | functionConstraintSatisfaction.ts | 101 let r7 = foo(b); variable
|
D | callSignatureWithoutReturnTypeAnnotationInference.ts | 109 let r7 = foo7(1); variable
|
D | derivedClassOverridesProtectedMembers2.ts | 155 let r7 = d2['']; variable
|
D | subtypingWithCallSignatures2.ts | 313 let r7 = foo7(r7arg1); // any variable
|
/arkcompiler/ets_runtime/test/typeinfer/classwithproperty/ |
D | classwithproperty.ts | 70 let r7: string = C.f(); variable
|