Function

Parent

A reflection object representing a function.

Properties

flags : Int

The function bit flag register defining some behaviour of it.

Bits and their meaing (least significant bit first): Is this function has a variable amount of input parameters. Can this function get called in syncrounus runtime. Can this function can get called in parallel runtime. Can this function get called in asynchronus runtime. Is this function a member function. The function is a class function. The function is a static function. The function has a variable amount of return values.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

Flags

Functions

getParameters () → parameters : Array<Object<Property>>

Returns all the parameters of this function.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get Parameters

Return Values
Name Type Description

Parameters parameters

Array<Object<Property>>

The parameters this function.