Package net.jangaroo.jooc.ast
Class SuperConstructorCallStatement
- java.lang.Object
-
- net.jangaroo.jooc.ast.NodeImplBase
-
- net.jangaroo.jooc.ast.Directive
-
- net.jangaroo.jooc.ast.Statement
-
- net.jangaroo.jooc.ast.SuperConstructorCallStatement
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.jangaroo.jooc.ast.NodeImplBase
NodeImplBase.Scoped
-
-
Field Summary
-
Fields inherited from class net.jangaroo.jooc.ast.NodeImplBase
usesInstanceThis
-
-
Constructor Summary
Constructors Constructor Description SuperConstructorCallStatement(JooSymbol symSuper, JooSymbol lParen, CommaSeparatedList<Expr> args, JooSymbol rParen, JooSymbol symSemicolon)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidanalyze(AstNode parentNode)ParenthesizedExpr<CommaSeparatedList<Expr>>getArgs()List<? extends AstNode>getChildren()ClassDeclarationgetClassDeclaration()ExprgetFun()JooSymbolgetSymbol()JooSymbolgetSymSemicolon()voidscope(Scope scope)voidsetClassDeclaration(ClassDeclaration classDeclaration)voidvisit(AstVisitor visitor)-
Methods inherited from class net.jangaroo.jooc.ast.Directive
isClassMember, isStatic, setClassMember
-
Methods inherited from class net.jangaroo.jooc.ast.NodeImplBase
analyze, getParentNode, isAssignmentLHS, makeChildren, notifyInstanceThisUsed, propagateInstanceThisUsed, scope, usesInstanceThis, withNewDeclarationScope, withNewLabelScope
-
-
-
-
Method Detail
-
getChildren
public List<? extends AstNode> getChildren()
- Specified by:
getChildrenin interfaceAstNode- Overrides:
getChildrenin classNodeImplBase
-
visit
public void visit(AstVisitor visitor) throws IOException
- Throws:
IOException
-
scope
public void scope(Scope scope)
-
analyze
public void analyze(AstNode parentNode)
- Specified by:
analyzein interfaceAstNode- Overrides:
analyzein classNodeImplBase
-
getSymbol
public JooSymbol getSymbol()
-
getFun
public Expr getFun()
-
getArgs
public ParenthesizedExpr<CommaSeparatedList<Expr>> getArgs()
-
getSymSemicolon
public JooSymbol getSymSemicolon()
-
getClassDeclaration
public ClassDeclaration getClassDeclaration()
-
setClassDeclaration
public void setClassDeclaration(ClassDeclaration classDeclaration)
-
-