コード例 #1
0
        private static object Eval(AphidInterpreter interpreter, string code)
        {
            interpreter.EnterChildScope();
            interpreter.Interpret(code);
            var retVal = interpreter.GetReturnValue();

            interpreter.LeaveChildScope();
            return(retVal);
        }