| Package | Description |
|---|---|
| org.apache.flex.compiler.internal.codegen.js.jx | |
| 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 | |
| org.apache.flex.compiler.utils |
| Modifier and Type | Method and Description |
|---|---|
protected void |
IfEmitter.emitConditional(IConditionalNode node,
boolean isElseIf) |
| Modifier and Type | Class and Description |
|---|---|
class |
ConditionalNode
Conditional node, that contains a condition to be met and a block to execute
if the condition is met
|
class |
DoWhileLoopNode |
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 |
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 | Method and Description |
|---|---|
IConditionalNode[] |
SwitchNode.getCaseNodes() |
IConditionalNode[] |
IfNode.getElseIfNodes() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IIfNode
An AST node representing an
if statement. |
interface |
ISwitchNode
An AST node representing a
switch statement. |
interface |
IWhileLoopNode
An AST node representing a
while
or do |
| Modifier and Type | Method and Description |
|---|---|
IConditionalNode[] |
ISwitchNode.getCaseNodes()
Returns an in-order array of case statements that are branches of this
switch statement
|
IConditionalNode[] |
IIfNode.getElseIfNodes()
Returns an in-order array of else if statements that are branches of this
if statement
|
| Modifier and Type | Method and Description |
|---|---|
static IConditionalNode[] |
ASNodeUtils.getCaseNodes(ISwitchNode node) |
Copyright © 2016 The Apache Software Foundation. All rights reserved.