Uses of Class
net.jangaroo.jooc.ast.Statement

Packages that use Statement
net.jangaroo.jooc   
net.jangaroo.jooc.ast   
 

Uses of Statement in net.jangaroo.jooc
 

Methods in net.jangaroo.jooc that return Statement
 Statement Scope.getCurrentLoopOrSwitch()
           
 Statement ScopeImplBase.getCurrentLoopOrSwitch()
           
 

Uses of Statement in net.jangaroo.jooc.ast
 

Subclasses of Statement in net.jangaroo.jooc.ast
 class AbstractBlock
           
 class BlockStatement
           
 class BreakStatement
           
 class CaseStatement
           
 class Catch
           
 class ClassBody
           
 class ClassDeclaration
           
 class ConditionalLoopStatement
           
 class ContinueStatement
           
 class Declaration
          Declarations are statements used to define entities such as variables, functions, classes, and interfaces.
 class DefaultStatement
           
 class DoStatement
           
 class EmptyDeclaration
           
 class EmptyStatement
           
 class ForInStatement
           
 class ForStatement
           
 class FunctionDeclaration
           
 class IdeDeclaration
           
 class IfStatement
           
 class KeywordExprStatement
           
 class KeywordStatement
           
 class LabeledStatement
           
 class LabelRefStatement
          A LabelRefStatement is either a break or continue statement
 class LoopStatement
           
 class NamespacedDeclaration
           
 class PackageDeclaration
           
 class Parameter
           
 class PredefinedTypeDeclaration
           
 class ReturnStatement
           
 class SemicolonTerminatedStatement
           
 class SuperConstructorCallStatement
           
 class SwitchStatement
           
 class ThrowStatement
           
 class TryStatement
           
 class TypedIdeDeclaration
           
 class VariableDeclaration
           
 class WhileStatement
           
 

Methods in net.jangaroo.jooc.ast that return Statement
 Statement LoopStatement.getBody()
           
 Statement LabelScope.getCurrentLoopOrSwitch()
           
 Statement IfStatement.getIfFalse()
           
 Statement IfStatement.getIfTrue()
           
 Statement LabeledStatement.getStatement()
           
 

Methods in net.jangaroo.jooc.ast with parameters of type Statement
 void LoopStatement.setBody(Statement body)
           
 void NodeImplBase.withNewLabelScope(Statement statement, Scope scope, NodeImplBase.Scoped scoped)
           
 

Constructors in net.jangaroo.jooc.ast with parameters of type Statement
ConditionalLoopStatement(JooSymbol symLoop, Expr optCond, Statement body)
           
DoStatement(JooSymbol symDo, Statement statement, JooSymbol symWhile, ParenthesizedExpr cond, JooSymbol symSemicolon)
           
ForInStatement(JooSymbol symFor, JooSymbol symEach, JooSymbol lParen, Ide ide, JooSymbol symIn, Expr expr, JooSymbol rParen, Statement body)
           
ForInStatement(JooSymbol symFor, JooSymbol symEach, JooSymbol lParen, VariableDeclaration decl, JooSymbol symIn, Expr expr, JooSymbol rParen, Statement body)
           
ForStatement(JooSymbol symFor, JooSymbol lParen, ForInitializer forInit, JooSymbol symSemicolon1, Expr optCond, JooSymbol symSemicolon2, Expr optStep, JooSymbol rParen, Statement body)
           
IfStatement(JooSymbol symIf, Expr cond, Statement ifTrue)
           
IfStatement(JooSymbol symIf, Expr cond, Statement ifTrue, JooSymbol symElse, Statement ifFalse)
           
LabeledStatement(Ide ide, JooSymbol symColon, Statement statement)
           
LabelScope(Statement statement, Scope parent)
           
LoopStatement(JooSymbol symLoop, Statement body)
           
WhileStatement(JooSymbol symWhile, ParenthesizedExpr cond, Statement body)
           
 



Copyright © 2002-2011 CoreMedia AG. All Rights Reserved.