Function Parameter
class FunctionParameter( val name: Identifier, val type: Type, val default: Expression?)
Content copied to clipboard
Represents a function parameter, as defined in the function's signature.
Constructors
Link copied to clipboard
fun FunctionParameter( name: Identifier, type: Type, default: Expression?)
Content copied to clipboard
Properties
Link copied to clipboard
the expression to be evaluated and used as the parameter's value if FunctionArgument.default is true. This expression will be evaluated in the same context as the function's definition.