Exemplo n.º 1
0
 def p_equality_in_query(self, e, q):
     return ast.ExpInQuery(e, True, q)
Exemplo n.º 2
0
 def p_equality_notin_query(self, e, q):
     return ast.ExpInQuery(e, False, q)
Exemplo n.º 3
0
 def p_equality_notin_query(self, e, q): return ast.ExpInQuery(e, False, q)
 def p_equality_in_exp(self, e, es): return ast.ExpInExp(e, True, es)