Represents a named or unnamed argument of a function definition in R.

interface RArgument<Info> {
    info: Info & Source;
    lexeme: string;
    location: SourceRange;
    name: undefined | RSymbol<Info, string>;
    type: Argument;
    value: undefined | RNode<Info>;
}

Type Parameters

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of RArgument

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 | RSymbol<Info, string>
type: Argument
value: undefined | RNode<Info>