var
declaration. An IVariableDefinition
IVariableNode for which isConst()
is false
.
For example, the declaration
public var i:int = 1;creates a variable definition whose base name is
"i"
, whose namespace reference is to the public
namespace, and whose type reference is named "int"
. A variable definition is contained within a file scope, a package scope, a class scope, an interface scope, or a function scope; it does not contain a scope.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|