| 75 | } |
| 76 | |
| 77 | void StmtNode::append(StmtNode *next) |
| 78 | { |
| 79 | StmtNode *walk = this; |
| 80 | while(walk->next) |
| 81 | walk = walk->next; |
| 82 | walk->next = next; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | void FunctionDeclStmtNode::setPackage(StringTableEntry packageName) |
no outgoing calls
no test coverage detected