Package | Description |
---|---|
org.apache.flex.compiler.internal.tree.as |
This package is the internal counterpart of the external
org.apache.flex.compiler.tree.as package. |
org.apache.flex.compiler.tree.as |
Modifier and Type | Class and Description |
---|---|
class |
BaseStatementNode
Base class for statements that have a conditional, with contents
|
class |
CatchNode
ActionScript parse tree node representing a catch block (catch (e:Exception)
{...})
|
class |
ConditionalNode
Conditional node, that contains a condition to be met and a block to execute
if the condition is met
|
class |
DoWhileLoopNode |
class |
ForLoopNode |
class |
IfNode
Represents an if statement, of the form
if(condition) doSomething(); else somethingElse();
if(condition) else if(otherCondition) else |
class |
SwitchNode
Represents a switch statement found in ActionScript.
|
class |
TerminalNode
Represents a terminal expression in a conditional node.
|
class |
TryNode
Represents a try/catch/finally node.
|
class |
WhileLoopNode
Represents a while loop node, either starting with a
do or with
a while . |
class |
WithNode
ActionScript parse tree node representing a with block (with (x) {...})
|
Modifier and Type | Interface and Description |
---|---|
interface |
ICatchNode
An AST node representing a
catch clause
in a try statement. |
interface |
IConditionalNode
An AST node representing a conditional clause within a statement.
|
interface |
IForLoopNode
An AST node representing a
for , for -in ,
or for -each -in statement. |
interface |
IIfNode
An AST node representing an
if statement. |
interface |
ISwitchNode
An AST node representing a
switch statement. |
interface |
ITerminalNode
An AST node representing a
else clause in an if statement,
a default clause in a switch statement,
or a finally clause in a try statement. |
interface |
ITryNode
An AST node representing a
try statement. |
interface |
IWhileLoopNode
An AST node representing a
while
or do |
interface |
IWithNode
An AST node representing an
with statement. |
Copyright © 2016 The Apache Software Foundation. All rights reserved.