FunctionCallToken

data class FunctionCallToken(val type: FunctionCallToken.Type, val range: IntRange, val lexeme: String)

A token within a function call which represents a specific part of the function call syntax such as the function name, delimiters, argument values, etc.

Parameters

type

the type of this token, indicating its role in the function call

range

the range in the source text where this token appears

lexeme

the actual text of this token, which is the part of the source code

Constructors

Link copied to clipboard
constructor(type: FunctionCallToken.Type, range: IntRange, lexeme: String)

Types

Link copied to clipboard

Represents the different types of tokens that can appear in a function call.

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard