|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
a[1]
.[1, 2, 3]
.a = b
or a += b
.a + b
or a && b
.true
or false
.break
statement.catch
clause within a try
statement.a ? b : c
.continue
statement, as allowed within the various
loop-statements.var a = 1;
.default xml namespace = "http://example.com/";
a..b
do { } while (condition);
.@[baseName+n]
.person().name
.myElem.(@myAttr=='1')
.finally
clause within a try
statement.for each(v in a) { }
.for (v in a) { }
.for
statement, such as for (; ; ) { }
.a = function() { }
.if (a) { doSomething(); }
.123
.a()
.ASMethod
or ASField
.new MyThing()
.null
.{a: "b", c: 2}
.package com.example { }
.a++
or a--
.!a
or ++a
.@myAttr
./[a-z]+/
return;
or return res;
.foo
.@*
."foo"
or 'bar'
.super(args);
.case
-label, and the list of statements
immediately following it.default:
label, and the list of
statements immediately following it.switch (c) { }
.throw new Error("bang!");
.try { } catch (e) { }
.ASClassType
and ASInterfaceType
.undefined
keyword;a:String
in var a:String;
while (test()) { }
.with (expr) { }
.a = <hello>world</hello>;
.@...
DocComment
.DocTag
elements of this
comment that have a tag name matching the given name.
ASMethod
and ASFunctionExpression
.ASMethod.AccessorRole.NORMAL_METHOD
,
ASMethod.AccessorRole.GETTER
or ASMethod.AccessorRole.SETTER
, with
NORMAL_METHOD being the default for newly synthesised methods.
ASCatchClause
.
Documentable.getDescriptionString()
or
Documentable.getDocumentation()
instead.
ASIfStatement.elseBlock()
.
Expression
objects.
ASField
objects representing the
fields this ActionScript class defines.
ASObjectLiteral.Field
objects.
SwitchLabel
elements (i.e.
ASMethod
objects.
Statement
objects held in the
containing element.
ASClassType
or ASInterfaceType
)
which this file defines.
ASVarDeclarationFragment
objects.
ASInvocationExpression
and
ASNewExpression
.var
keyword (the default), and true is this is a declaration using the
const
keyword.
dynamic
modifier, and false otherwise.
final
modifier, and false otherwise.
-expr
break
statement.
case
-label in this switch-statement with the given value,
to which other statements can be added.
ActionScriptFactory.newClass(String)
that also
adds the resulting CompilationUnit to the list managed by this
project.
default
-label in this switch-statement, to
which other statements can be added.
ActionScriptFactory.newInterface(String)
that also
adds the resulting CompilationUnit to the list managed by this
project.
!expr
+expr
expr--
expr++
--expr
++expr
const
keyword, if given false, this declaration will use the
var
keyword.
Documentable.setDescription(String)
or
Documentable.getDocumentation()
instead.
dynamic
modifer.
final
modifer.
@return
tagged paragraph in this method's documentation comment, or create
one if it doesn't exist.
ASIfStatement.setThenStatement(Statement)
ASSwitchStatement
:
ASSwitchCase
and ASSwitchDefault
.public
, private
,
protected
and internal
modifiers (or lack of) in
the member's definition.
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |