| 45 | namespace Compiler |
| 46 | { |
| 47 | U32 compileBlock(StmtNode* block, CodeStream& codeStream, U32 ip) |
| 48 | { |
| 49 | for (StmtNode* walk = block; walk; walk = walk->getNext()) |
| 50 | { |
| 51 | ip = walk->compileStmt(codeStream, ip); |
| 52 | } |
| 53 | return codeStream.tell(); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | using namespace Compiler; |
no test coverage detected