| 250 | } |
| 251 | |
| 252 | void IfStmtNode::propagateSwitchExpr(ExprNode *left, bool string) |
| 253 | { |
| 254 | testExpr = getSwitchOR(left, testExpr, string); |
| 255 | if(propagate && elseBlock) |
| 256 | ((IfStmtNode *) elseBlock)->propagateSwitchExpr(left, string); |
| 257 | } |
| 258 | |
| 259 | U32 IfStmtNode::compileStmt(CodeStream &codeStream, U32 ip) |
| 260 | { |