Home
last modified time | relevance | path

Searched refs:Unconstrained (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DmappedTypesArraysTuples.js97 type Unconstrained<T> = ElementType<Mapped<T>>;
98 type T1 = Unconstrained<[string, number, boolean]>; // string | number | boolean
209 type Unconstrained<T> = ElementType<Mapped<T>>;
210 type T1 = Unconstrained<[string, number, boolean]>;
DmappedTypesArraysTuples.types264 type Unconstrained<T> = ElementType<Mapped<T>>;
265 >Unconstrained : Unconstrained<T>
267 type T1 = Unconstrained<[string, number, boolean]>; // string | number | boolean
DmappedTypesArraysTuples.symbols365 type Unconstrained<T> = ElementType<Mapped<T>>;
366 >Unconstrained : Symbol(Unconstrained, Decl(mappedTypesArraysTuples.ts, 91, 1))
372 type T1 = Unconstrained<[string, number, boolean]>; // string | number | boolean
374 >Unconstrained : Symbol(Unconstrained, Decl(mappedTypesArraysTuples.ts, 91, 1))
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypesArraysTuples.ts99 type Unconstrained<T> = ElementType<Mapped<T>>; alias
100 type T1 = Unconstrained<[string, number, boolean]>; // string | number | boolean
/third_party/node/deps/v8/src/torque/
Ddeclarable.cc142 result.push_back(TypeConstraint::Unconstrained()); in ComputeConstraints()
Ddeclarable.h548 static TypeConstraint Unconstrained() { return {}; } in Unconstrained() function