private static object Eval(AphidInterpreter interpreter, string code) { interpreter.EnterChildScope(); interpreter.Interpret(code); var retVal = interpreter.GetReturnValue(); interpreter.LeaveChildScope(); return(retVal); }