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