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

    Represents an unnamed argument of a function definition in R, i.e. an argument without a name. For the helper object, see RArgument.isUnnamed.

    interface RUnnamedArgument<Info = NoInfo> {
        info: Info & Source;
        lexeme: string;
        location: SourceRange;
        name: undefined;
        type: Argument;
        value: RNode<Info>;
        [key: string]: unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of RUnnamedArgument
    Index

    Properties

    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

    name: undefined
    type: Argument
    value: RNode<Info>