RSymbol: {
    is<OtherInfo = object>(
        this: void,
        node: undefined | RNode<OtherInfo>,
    ): node is RSymbol<OtherInfo, Identifier>;
    isSpecial<OtherInfo = object>(
        this: void,
        node: undefined | RNode<OtherInfo>,
    ): node is RSymbol<OtherInfo, "NA" | "NULL">;
    name: "RSymbol";
}

Helper for working with RSymbol AST nodes.

Type declaration