Class FunctionCallExpr

java.lang.Object
com.google.refine.grel.ast.FunctionCallExpr
All Implemented Interfaces:
Evaluable

public class FunctionCallExpr extends Object implements Evaluable
An abstract syntax tree node encapsulating a function call. The function's arguments are all evaluated down to values before the function is applied. If any argument is an error, the function is not applied, and the error is the result of the expression.
  • Field Details

    • _args

      protected final Evaluable[] _args
    • _function

      protected final Function _function
  • Constructor Details

  • Method Details