Searched refs:subexpr (Results 1 – 1 of 1) sorted by relevance
6157 def rec(subexpr): argument6158 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): argument6210 if subexpr.__class__ is tuple and subexpr[0] is op:6211 rec(subexpr[1])6212 rec(subexpr[2])[all …]