static class Localstore extends ROperator {
Localstore(){super("local!");}
public void execute(DTState state) throws RulesException {
int index = state.datapop().intValue();
IRObject value = state.datapop();
if(state.testState(DTState.TRACE)){
state.traceInfo("local_store", "index",index+"","value",value.stringValue(),null);
}
state.setFrameValue(index, value);
}