@eagleoutice/flowr - v2.9.14
    Preparing search index...

    Represents a parameter of a function definition in R.

    interface RParameter<Info = NoInfo> {
        defaultValue: RNode<Info> | undefined;
        info: Info & Source;
        lexeme: string;
        location: SourceRange;
        name: RSymbol<Info, BrandedIdentifier>;
        special: boolean;
        type: Parameter;
        [key: string]: unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of RParameter
    Index

    Properties

    defaultValue: RNode<Info> | undefined
    info: Info & Source

    allows to attach additional information to the node

    lexeme: string

    the original string retrieved from R, can be used for further identification

    location: SourceRange

    The location may differ from what is stated in Source#fullRange as it represents the location identified by the R parser.

    Source#fullRange

    special: boolean

    is it the special ... parameter?

    type: Parameter