Exemplo n.º 1
0
 def p_function_w_exp(self, p):
     'function : WSCALAR LPAREN number COMMA number RPAREN'
     p[0] = ast.w(p[3], p[5])
Exemplo n.º 2
0
 def p_function_w(self, p):
     'function : WSCALAR LPAREN number RPAREN'
     p[0] = ast.w(p[3])