Searched refs:subexpr (Results 1 – 1 of 1) sorted by relevance
6113 def rec(subexpr): argument6114 if subexpr.__class__ is tuple:6117 rec(subexpr[1])6120 if subexpr[0] is not NOT:6121 rec(subexpr[2])6125 res.add(subexpr)6165 def rec(subexpr): argument6166 if subexpr.__class__ is tuple and subexpr[0] is op:6167 rec(subexpr[1])6168 rec(subexpr[2])[all …]