Lines Matching defs:destructuringContext
26 #include "checker/ts/destructuringContext.h"
374 auto destructuringContext = checker::ArrayDestructuringContext(
378 destructuringContext.SetInferredType(
379 checker->CreateUnionType({foundVar->TsType(), destructuringContext.InferredType()}));
382 destructuringContext.Start();
383 patternParamType = destructuringContext.InferredType();
389 auto destructuringContext = checker::ObjectDestructuringContext(
393 destructuringContext.SetInferredType(
394 checker->CreateUnionType({foundVar->TsType(), destructuringContext.InferredType()}));
397 destructuringContext.Start();
398 patternParamType = destructuringContext.InferredType();