/third_party/typescript/tests/baselines/reference/ |
D | bestCommonTypeWithContextualTyping.symbols | 2 interface Contextual { 3 >Contextual : Symbol(Contextual, Decl(bestCommonTypeWithContextualTyping.ts, 0, 0)) 6 >dummy : Symbol(Contextual.dummy, Decl(bestCommonTypeWithContextualTyping.ts, 0, 22)) 9 >p : Symbol(Contextual.p, Decl(bestCommonTypeWithContextualTyping.ts, 1, 10)) 27 // always use Ellement in these examples (not Contextual). Because Ellement is assignable 28 // to Contextual, no errors. 29 var arr: Contextual[] = [e]; // Ellement[] 31 >Contextual : Symbol(Contextual, Decl(bestCommonTypeWithContextualTyping.ts, 0, 0)) 34 var obj: { [s: string]: Contextual } = { s: e }; // { s: Ellement; [s: string]: Ellement } 37 >Contextual : Symbol(Contextual, Decl(bestCommonTypeWithContextualTyping.ts, 0, 0)) [all …]
|
D | bestCommonTypeWithContextualTyping.types | 2 interface Contextual { 22 // always use Ellement in these examples (not Contextual). Because Ellement is assignable 23 // to Contextual, no errors. 24 var arr: Contextual[] = [e]; // Ellement[] 25 >arr : Contextual[] 29 var obj: { [s: string]: Contextual } = { s: e }; // { s: Ellement; [s: string]: Ellement } 30 >obj : { [s: string]: Contextual; } 36 var conditional: Contextual = null ? e : e; // Ellement 37 >conditional : Contextual 43 var contextualOr: Contextual = e || e; // Ellement [all …]
|
D | nonContextuallyTypedLogicalOr.symbols | 2 interface Contextual { 3 >Contextual : Symbol(Contextual, Decl(nonContextuallyTypedLogicalOr.ts, 0, 0)) 6 >dummy : Symbol(Contextual.dummy, Decl(nonContextuallyTypedLogicalOr.ts, 0, 22)) 9 >p : Symbol(Contextual.p, Decl(nonContextuallyTypedLogicalOr.ts, 1, 10)) 22 var c: Contextual; 24 >Contextual : Symbol(Contextual, Decl(nonContextuallyTypedLogicalOr.ts, 0, 0))
|
D | nonContextuallyTypedLogicalOr.types | 2 interface Contextual { 18 var c: Contextual; 19 >c : Contextual 26 >(c || e) : Contextual | Ellement 27 >c || e : Contextual | Ellement 28 >c : Contextual
|
D | bestCommonTypeWithContextualTyping.js | 2 interface Contextual { 17 var arr: Contextual[] = [e]; // Ellement[] 18 var obj: { [s: string]: Contextual } = { s: e }; // { s: Ellement; [s: string]: Ellement } 20 var conditional: Contextual = null ? e : e; // Ellement 21 var contextualOr: Contextual = e || e; // Ellement
|
D | thisTypeInAccessors.js | 33 class Contextual { class 72 var Contextual = /** @class */ (function () { 73 function Contextual() { class in Contextual 76 Object.defineProperty(Contextual.prototype, "x", { 82 return Contextual;
|
D | thisTypeInAccessors.symbols | 128 class Contextual { 129 >Contextual : Symbol(Contextual, Decl(thisTypeInAccessors.ts, 30, 1)) 132 >n : Symbol(Contextual.n, Decl(thisTypeInAccessors.ts, 31, 18)) 135 >x : Symbol(Contextual.x, Decl(thisTypeInAccessors.ts, 32, 11)) 136 >this.n : Symbol(Contextual.n, Decl(thisTypeInAccessors.ts, 31, 18)) 137 >this : Symbol(Contextual, Decl(thisTypeInAccessors.ts, 30, 1)) 138 >n : Symbol(Contextual.n, Decl(thisTypeInAccessors.ts, 31, 18))
|
D | nonContextuallyTypedLogicalOr.js | 2 interface Contextual { 12 var c: Contextual;
|
D | arrayLiterals.errors.txt | 30 …// Contextual type C with numeric index signature makes array literal of EveryType E of type BCT(E… 42 …// Contextual type C with numeric index signature of type Base makes array literal of Derived have… 48 …// Contextual type C with numeric index signature of type Base makes array literal of Derived1 and…
|
D | thisTypeInAccessors.types | 133 class Contextual { 134 >Contextual : Contextual
|
D | arrayLiterals.types | 78 // Contextual type C with numeric index signature makes array literal of EveryType E of type BCT(E,… 118 // Contextual type C with numeric index signature of type Base makes array literal of Derived have … 141 // Contextual type C with numeric index signature of type Base makes array literal of Derived1 and …
|
D | arrayLiterals.symbols | 44 // Contextual type C with numeric index signature makes array literal of EveryType E of type BCT(E,… 66 // Contextual type C with numeric index signature of type Base makes array literal of Derived have … 87 // Contextual type C with numeric index signature of type Base makes array literal of Derived1 and …
|
D | arrayLiteralExpressionContextualTyping.symbols | 8 var array1 = [true, 2, 3]; // Contextual type by the numeric index type of the contextual type
|
D | arrayLiteralExpressionContextualTyping.types | 12 var array1 = [true, 2, 3]; // Contextual type by the numeric index type of the contextual type
|
D | thisTypeInAccessors.errors.txt | 59 class Contextual {
|
D | arrayLiteralExpressionContextualTyping.errors.txt | 16 var array1 = [true, 2, 3]; // Contextual type by the numeric index type of the contextual type
|
D | parenthesizedContexualTyping3.types | 2 // Contextual typing for parenthesized substitution expressions in tagged templates.
|
D | parenthesizedContexualTyping3.symbols | 2 // Contextual typing for parenthesized substitution expressions in tagged templates.
|
/third_party/typescript/tests/cases/compiler/ |
D | bestCommonTypeWithContextualTyping.ts | 1 interface Contextual { interface 16 var arr: Contextual[] = [e]; // Ellement[] 17 var obj: { [s: string]: Contextual } = { s: e }; // { s: Ellement; [s: string]: Ellement } 19 var conditional: Contextual = null ? e : e; // Ellement 20 var contextualOr: Contextual = e || e; // Ellement
|
D | nonContextuallyTypedLogicalOr.ts | 1 interface Contextual { interface 11 var c: Contextual;
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | no-unsafe-assignment.ts | 14 Contextual, enumerator 232 comparisonType === ComparisonType.Contextual
|
/third_party/typescript/tests/cases/conformance/types/thisType/ |
D | thisTypeInAccessors.ts | 35 class Contextual { class
|
/third_party/typescript/src/services/ |
D | signatureHelp.ts | 3 const enum InvocationKind { Call, TypeArgs, Contextual } enumerator 7 readonly kind: InvocationKind.Contextual; 95 case InvocationKind.Contextual: 120 if (argumentInfo.invocation.kind === InvocationKind.Contextual) return undefined; 313 …const invocation: ContextualInvocation = { kind: InvocationKind.Contextual, signature: first(signa… 513 …const callTargetSymbol = invocation.kind === InvocationKind.Contextual ? invocation.symbol : (type…
|
/third_party/harfbuzz/src/ |
D | hb-aat-layout-morx-table.hh | 880 Contextual = 1, enumerator 893 case Contextual: return_trace (c->dispatch (u.contextual, hb_forward<Ts> (ds)...)); in dispatch()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-aat-layout-morx-table.hh | 880 Contextual = 1, enumerator 893 case Contextual: return_trace (c->dispatch (u.contextual, hb_forward<Ts> (ds)...)); in dispatch()
|