Holds everything needed to generate the parameters for and call a function.
protected var _func:Function
func:Function [read-only]
The action script callable object.
Implementation
public function get func():Function
protected var _name:String
name:String [read-only]
The name of the function.
Implementation
public function get name():String
protected var _parameters:Array
parameters:Array [read-only]
The array of Parameters to the function.
Implementation
public function get parameters():Array
See also
public function FunctionSpec(name:String, func:Function, parameters:Array = null)
Creates a new function spec.
Parameters
| name:String — the name of the function
|
| |
| func:Function — the function
|
| |
| parameters:Array (default = null) — an array of Parameter objects that represent the function's
actual parameters
|
See also