orc.runtime.nodes
Class Let

java.lang.Object
  extended by orc.runtime.nodes.Node
      extended by orc.runtime.nodes.Let
All Implemented Interfaces:
java.io.Serializable

public class Let
extends Node

See Also:
Serialized Form

Field Summary
 Arg arg
           
 Node next
           
 
Constructor Summary
Let(Arg arg, Node next)
           
 
Method Summary
 void process(Token t)
          The process method is the fundamental operation in the execution engine.
 java.lang.String toString()
           
 
Methods inherited from class orc.runtime.nodes.Node
isTerminal
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

arg

public Arg arg

next

public Node next
Constructor Detail

Let

public Let(Arg arg,
           Node next)
Method Detail

process

public void process(Token t)
Description copied from class: Node
The process method is the fundamental operation in the execution engine. It is called to perform the action of the node on a token.

Specified by:
process in class Node
Parameters:
t - input token being processed

toString

public java.lang.String toString()
Overrides:
toString in class Node