(astOp)
| 26 | |
| 27 | |
| 28 | def convertOperator(astOp): |
| 29 | if type(astOp) in AST_OPERATORS: |
| 30 | return AST_OPERATORS[type(astOp)] |
| 31 | if type(astOp) in UNARY_AST_OPERATORS: |
| 32 | return UNARY_AST_OPERATORS[type(astOp)] |
| 33 | |
| 34 | def SplootNode(type, childSets={}, properties={}, metadata=None): |
| 35 | node = { |
no outgoing calls
no test coverage detected