com.jeffpalm.scoping.compiler.ast
Class PrefixExpression

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.PrefixExpression

public final class PrefixExpression
extends Expression


Field Summary
 Expression left
           
 Operator.Prefix op
           
 
Fields inherited from class com.jeffpalm.scoping.compiler.ast.Node
pos
 
Method Summary
 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

op

public final Operator.Prefix op

left

public final Expression left
Method Detail

traverse

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