示例#1
0
 private Expression BindFunctionCall(string identifier, List <Expression> arguments)
 {
     try
     {
         return(_binder.BindFunctionCall(identifier, arguments));
     }
     catch (BindException e)
     {
         throw new ParseException(e.Message, Position, e);
     }
 }