CallArguments

@Serializable
data class CallArguments(val positional: List<InlineExpression> = emptyList(), val named: List<NamedArgument> = emptyList(), val type: String = "CallArguments")(source)

Arguments passed to a function call or term reference.

Constructors

Link copied to clipboard
constructor(positional: List<InlineExpression> = emptyList(), named: List<NamedArgument> = emptyList(), type: String = "CallArguments")

Properties

Link copied to clipboard

Named arguments (key-value pairs)

Link copied to clipboard

Positional arguments in order

Link copied to clipboard