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