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