WalkedFunctionArgument

data class WalkedFunctionArgument(val name: String?, val value: String, val range: IntRange)

Structured data produced by FunctionCallWalkerParser which represents a function call argument.

Parameters

name

the name of the argument, if the argument is named

value

the raw value of the argument

range

the range of the argument value (including delimiters) in the source text

Constructors

Link copied to clipboard
constructor(name: String?, value: String, range: IntRange)

Properties

Link copied to clipboard
val name: String?
Link copied to clipboard
Link copied to clipboard