(expr)
| 810 | return ret[1:] + ')' |
| 811 | |
| 812 | def isCast(expr): |
| 813 | if not expr or expr.str != '(' or not expr.astOperand1 or expr.astOperand2: |
| 814 | return False |
| 815 | if simpleMatch(expr, '( )'): |
| 816 | return False |
| 817 | return True |
| 818 | |
| 819 | def is_constant_integer_expression(expr): |
| 820 | if expr is None: |
no test coverage detected