예제 #1
0
 /**
  * Called by top level interpeter to set to execution context for this interpeter to be top level
  * instead of an internal generator.
  */
 public void setTopInterpreter(LPInterpreterContext context) {
   iContext = context;
   FrameObject topChoice = topTMFrame.getLink();
   if (topChoice instanceof ConsumerChoicePointFrame) {
     ((ConsumerChoicePointFrame) topChoice).context = context;
   }
 }