Identifier for named arguments e.g. for age in list(name = 'John', age = 8) the indentifier would be

{
index: 2,
lexeme: 'age'
}
interface NamedArgumentId {
    index: undefined | number;
    lexeme: string;
}

Properties

Properties

index: undefined | number

Index may be undefined, when no index information is available.

lexeme: string