public class SL_NopNode extends ParseNode {
  public int getType() { return G_NOP; }
  public ParseNode interpret(SymbolTable st) 
    throws InterpretException, BreakException, ReturnException {
      return null;  
  }
}
