FunctionCall

@Serializable
data class FunctionCall(val name: String, val args: List<String>)

Represents a call to a function, specifying the function's name and the arguments to be passed to it.

Constructors

Link copied to clipboard
constructor(name: String, args: List<String>)

Properties

Link copied to clipboard
val args: List<String>

A list of strings representing the arguments to be passed to the function. Each string in the list corresponds to an individual argument, and the order of the strings represents the order in which arguments are passed.

Link copied to clipboard
val name: String

The name of the function being called. This should match the function's identifier within its defining context or library.