Exemplo n.º 1
0
 public virtual T VisitFunctionCallExpression(FunctionCallExpressionNode node, T1 t1)
 {
     return(VisitDefault(node, t1));
 }
Exemplo n.º 2
0
        private FunctionCallExpressionParameterNode BindFunctionCallExpressionParameter(FunctionCallExpressionNode parent, Scanner <CommonTree> parentChildren)
        {
            return(CreateNode <FunctionCallExpressionParameterNode>(parent, parentChildren, (node, children) =>
            {
                children.Next();

                if (children.Current.Text != string.Empty)
                {
                    node.Identifier = BindIdentifier(node, children);
                }

                children.Next();

                node.Value = BindExpression(node, children);
            }));
        }