Exemplo n.º 1
0
        private static FunctionDotCallNode CreateFunctionCallNode(string className, string methodName, List <AssociativeNode> args, Core core)
        {
            FunctionCallNode fNode = new FunctionCallNode();

            fNode.Function        = new IdentifierNode(methodName);
            fNode.FormalArguments = args;

            IdentifierNode inode = new IdentifierNode(className);

            return(CoreUtils.GenerateCallDotNode(inode, fNode, core));
        }