com.jeffpalm.scoping.compiler.ast
Class ExplicitConstructorCall

java.lang.Object
  extended by com.jeffpalm.scoping.compiler.ast.Node
      extended by com.jeffpalm.scoping.compiler.ast.Statement
          extended by com.jeffpalm.scoping.compiler.ast.Expression
              extended by com.jeffpalm.scoping.compiler.ast.ExplicitConstructorCall
Direct Known Subclasses:
ExplicitConstructorCall.Super, ExplicitConstructorCall.This

public abstract class ExplicitConstructorCall
extends Expression


Nested Class Summary
static class ExplicitConstructorCall.Super
           
static class ExplicitConstructorCall.This
           
 
Field Summary
 Arguments arguments
           
 
Fields inherited from class com.jeffpalm.scoping.compiler.ast.Node
pos
 
Constructor Summary
protected ExplicitConstructorCall(Pos pos, Arguments arguments)
           
 
Method Summary
abstract  boolean isSuper()
           
 void traverse(IVisitor vis)
           
 
Methods inherited from class com.jeffpalm.scoping.compiler.ast.Node
toString, typeString, whatToPrint
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

arguments

public final Arguments arguments
Constructor Detail

ExplicitConstructorCall

protected ExplicitConstructorCall(Pos pos,
                                  Arguments arguments)
Method Detail

isSuper

public abstract boolean isSuper()

traverse

public final void traverse(IVisitor vis)
Specified by:
traverse in class Node