Exemplo n.º 1
0
        public object Eval()
        {
            object result = tree.Eval(null);

            if (tree.Context.CurrentStackSize > 0)
            {
                Errors.Add(new ParseError("Stacksize is not empty", 0, null));
            }
            return(result);
        }
Exemplo n.º 2
0
        public object Eval()
        {
            object result = tree.Eval(null);

            return(result);
        }