RConstructs: {
    constructTypes: ReadonlySet<RType>;
    is<Info = object>(
        this: void,
        node: undefined | RNode<Info>,
    ): node is RConstructs<Info>;
    name: "RConstructs";
}

Type declaration

  • ReadonlyconstructTypes: ReadonlySet<RType>

    A set of all types of constructs in the normalized AST, i.e. for, repeat and while loops and if-then-else constructs.

  • is:function
  • Readonlyname: "RConstructs"