Uses of Class
net.jangaroo.jooc.ast.BlockStatement
-
Packages that use BlockStatement Package Description net.jangaroo.jooc.ast net.jangaroo.jooc.backend -
-
Uses of BlockStatement in net.jangaroo.jooc.ast
Methods in net.jangaroo.jooc.ast that return BlockStatement Modifier and Type Method Description BlockStatementCatch. getBlock()BlockStatementSwitchStatement. getBlock()BlockStatementTryStatement. getBlock()BlockStatementFunctionDeclaration. getBody()BlockStatementFunctionExpr. getBody()BlockStatementTryStatement. getFinallyBlock()Methods in net.jangaroo.jooc.ast with parameters of type BlockStatement Modifier and Type Method Description voidAstVisitor. visitBlockStatement(BlockStatement blockStatement)voidAstVisitorBase. visitBlockStatement(BlockStatement blockStatement)voidTransitiveAstVisitor. visitBlockStatement(BlockStatement blockStatement)Constructors in net.jangaroo.jooc.ast with parameters of type BlockStatement Constructor Description Catch(JooSymbol symCatch, JooSymbol lParen, Parameter param, JooSymbol rParen, BlockStatement block)FunctionDeclaration(AnnotationsAndModifiers am, JooSymbol symFunction, JooSymbol symGetOrSet, Ide ide, JooSymbol lParen, Parameters params, JooSymbol rParen, TypeRelation optTypeRelation, BlockStatement optBody, JooSymbol optSymSemicolon)FunctionExpr(FunctionDeclaration functionDeclaration, JooSymbol symFunction, Ide ide, JooSymbol lParen, Parameters params, JooSymbol rParen, TypeRelation optTypeRelation, BlockStatement optBody)TryStatement(JooSymbol symTry, BlockStatement block, List<Catch> catches)TryStatement(JooSymbol symTry, BlockStatement block, List<Catch> catches, JooSymbol symFinally, BlockStatement finallyBlock) -
Uses of BlockStatement in net.jangaroo.jooc.backend
Methods in net.jangaroo.jooc.backend with parameters of type BlockStatement Modifier and Type Method Description protected voidCodeGeneratorBase. addBlockStartCodeGenerator(BlockStatement block, CodeGenerator codeGenerator)voidCodeGeneratorBase. visitBlockStatement(BlockStatement blockStatement)voidTypeScriptCodeGenerator. visitBlockStatement(BlockStatement blockStatement)protected voidCodeGeneratorBase. visitBlockStatementDirectives(BlockStatement blockStatement)protected voidTypeScriptCodeGenerator. visitBlockStatementDirectives(BlockStatement body)
-