public static NeuOperation Execute( this NeuInterpreter interpreter, NeuCallExpression callExpression) { var name = callExpression.GetName(); if (IsNullOrWhiteSpace(name)) { throw new Exception(); } /// var rawArgs = callExpression.GetArguments(); /// return(interpreter.Call(name, rawArgs)); // /// // /// // if (IsNeuPrimitive(name)) { // } }