orc.runtime.nodes
Class Semi

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

public class Semi
extends Node

A compile node that runs its left side to completion, then initiates the right side. Implemented using regions.

Author:
dkitchin
See Also:
Serialized Form

Constructor Summary
Semi(Node left, Node right)
           
 
Method Summary
 void process(Token t)
          The input token is activated on the right node, and a copy is activated on the left node.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Semi

public Semi(Node left,
            Node right)
Method Detail

process

public void process(Token t)
The input token is activated on the right node, and a copy is activated on the left node.

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