(expr)
| 13 | |
| 14 | |
| 15 | def extract_relations(expr): |
| 16 | toks = tokenize_s_expr(expr) |
| 17 | return [x for x in toks if ('.' in x) and (not x.startswith('m.')) and (not '^^' in x)] |
| 18 | |
| 19 | class ASTNode: |
| 20 | UNARY = 'unary' |
nothing calls this directly
no test coverage detected