Skip to main content
Module

x/ts_morph/ts_morph.d.ts>Node#getParentWhile

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Go to Latest
method Node.prototype.getParentWhile
import { Node } from "https://deno.land/x/ts_morph@15.1.0/ts_morph.d.ts";

Goes up the parents (ancestors) of the node while a condition is true. Returns undefined if the initial parent doesn't match the condition.

Parameters

condition: (parent: Node, child: Node) => parent is T
  • Condition that tests the parent to see if the expression is true.

Returns

T | undefined

Goes up the parents (ancestors) of the node while a condition is true. Returns undefined if the initial parent doesn't match the condition.

Parameters

condition: (parent: Node, child: Node) => boolean
  • Condition that tests the parent to see if the expression is true.

Returns

Node | undefined