Example #1
0
def p_funcCall_1(t):
    """
    funcCall : ID S_PARIZQ paramsList S_PARDER
    """
    t[0] = expression.FunctionCall(t[1], t[3], t.slice[1].lineno,
                                   t.slice[1].lexpos)
    repGrammar.append(t.slice)
Example #2
0
def p_funcCall_2(t):
    """
    funcCall : ID S_PARIZQ S_PARDER
            | R_NOW S_PARIZQ S_PARDER
    """
    t[0] = expression.FunctionCall(t[1], [], t.slice[1].lineno,
                                   t.slice[1].lexpos)
    repGrammar.append(t.slice)