| 148 | } |
| 149 | |
| 150 | void PiuContainerDictionary(xsMachine* the, void* it) |
| 151 | { |
| 152 | PiuContainer* self = it; |
| 153 | xsBooleanValue boolean; |
| 154 | if (xsFindBoolean(xsArg(1), xsID_clip, &boolean)) { |
| 155 | if (boolean) |
| 156 | (*self)->flags |= piuClip; |
| 157 | else |
| 158 | (*self)->flags &= ~piuClip; |
| 159 | } |
| 160 | if (xsFindResult(xsArg(1), xsID_contents)) { |
| 161 | (void)xsCall1(xsThis, xsID__recurse, xsResult); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | void PiuContainerFitHorizontally(void* it) |
| 166 | { |
no outgoing calls
no test coverage detected