| 194 | } |
| 195 | |
| 196 | void IfStmtNode::propagateSwitchExpr(ExprNode* left, bool string) |
| 197 | { |
| 198 | testExpr = getSwitchOR(left, testExpr, string); |
| 199 | if (propagate && elseBlock) |
| 200 | ((IfStmtNode*)elseBlock)->propagateSwitchExpr(left, string); |
| 201 | } |
| 202 | |
| 203 | U32 IfStmtNode::compileStmt(CodeStream& codeStream, U32 ip) |
| 204 | { |