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

Type declaration

  • ReadonlyfunctionTypes: ReadonlySet<RType>

    A set of all types of function-related nodes in the normalized AST, i.e. function definitions, function calls, parameters and arguments.

  • is:function
  • Readonlyname: "RFunctions"