PExpFunCall

data class PExpFunCall(val functionName: String, val argsList: List<PArgument>) : PExpression

An expression that is a call to a function named functionName, called with the provided argsList.

Constructors

Link copied to clipboard
constructor(functionName: String, argsList: List<PArgument>)

Types

Link copied to clipboard

Properties

Link copied to clipboard

List of arguments to use when calling the function.

Link copied to clipboard

Name of the function to call