WalkedFunctionCall

data class WalkedFunctionCall(val name: String, val arguments: List<WalkedFunctionArgument>, val bodyArgument: WalkedFunctionArgument?, var next: WalkedFunctionCall? = null)

Structured data produced by FunctionCallWalkerParser which represents a function call. This syntax-only information will later be converted to a FunctionCall by BlockTokenParser by injecting further context-aware information.

Parameters

name

the name of the function

arguments

the function's arguments

bodyArgument

the function's body argument, if any

next

the next function call in the chain, if any

Constructors

Link copied to clipboard
constructor(name: String, arguments: List<WalkedFunctionArgument>, bodyArgument: WalkedFunctionArgument?, next: WalkedFunctionCall? = null)

Properties

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