Lines Matching refs:subexpr
6157 def rec(subexpr): argument
6158 if subexpr.__class__ is tuple:
6161 rec(subexpr[1])
6164 if subexpr[0] is not NOT:
6165 rec(subexpr[2])
6169 res.add(subexpr)
6209 def rec(subexpr): argument
6210 if subexpr.__class__ is tuple and subexpr[0] is op:
6211 rec(subexpr[1])
6212 rec(subexpr[2])
6214 res.append(subexpr)