| 137 | } |
| 138 | |
| 139 | xsIntegerValue PiuContainerCount(PiuContainer* self) |
| 140 | { |
| 141 | PiuContent* content = (*self)->first; |
| 142 | xsIntegerValue result = 0;; |
| 143 | while (content) { |
| 144 | result++; |
| 145 | content = (*content)->next; |
| 146 | } |
| 147 | return result; |
| 148 | } |
| 149 | |
| 150 | void PiuContainerDictionary(xsMachine* the, void* it) |
| 151 | { |
no outgoing calls
no test coverage detected