function set
declaration. An ISetterDefinition
ISetterNode.
For example, the declaration
public function set width(value:Number):void;creates a setter definition whose base name is
"width"
, whose namespace reference is to the public
namespace, whose type reference is named "Number"
, and whose return type reference is named "void"
. It also owns one parameter definition named "value"
. A setter definition is contained within a file scope, a package scope, a class scope, an interface scope, or a function scope; it contains a function scope.
|
|