Nss Function
class NssFunction( val name: Identifier, val parameters: Array<FunctionParameter>, val retType: Type, val body: Block, val native: Boolean = false) : Statement
Content copied to clipboard
Represents the definition of a function.
Constructors
Link copied to clipboard
fun NssFunction( name: Identifier, parameters: Array<FunctionParameter>, retType: Type, body: Block, native: Boolean = false)
Content copied to clipboard
Properties
Link copied to clipboard
a list of parameters that must be passed as arguments during invocation.