| 90 | } |
| 91 | |
| 92 | void StmtNode::append(StmtNode* appended) |
| 93 | { |
| 94 | StmtNode* walk = this; |
| 95 | while (walk->next) |
| 96 | walk = walk->next; |
| 97 | walk->next = appended; |
| 98 | } |
| 99 | |
| 100 | |
| 101 | void FunctionDeclStmtNode::setPackage(StringTableEntry packageName) |
no outgoing calls
no test coverage detected