Esempio n. 1
0
        public PrgState execute(PrgState state)
        {
            MyIList <int> outList = state.getOutList();
            MyIDictionary <string, int> symTabel = state.getSymTable();

            outList.add(exp.Eval(symTabel));
            return(null);
        }