Esempio n. 1
0
 def p_equality_in_query(self, e, q):
     return ast.ExpInQuery(e, True, q)
Esempio n. 2
0
 def p_equality_notin_query(self, e, q):
     return ast.ExpInQuery(e, False, q)
Esempio 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)