FunctionArgument

class FunctionArgument(val expression: Expression?, val default: Boolean)

Represents an argument passed to a function invocation.

Constructors

Link copied to clipboard
fun FunctionArgument(expression: Expression?, default: Boolean)

Properties

Link copied to clipboard
val default: Boolean

whether the default keyword has been supplied instead of an expression, indicating that the corresponding parameter's default value should be used.

Link copied to clipboard
val expression: Expression?

an expression evaluating to the value to be used by the function.