| 261 | // (the def-level for the next nullable node is incremented). |
| 262 | struct AllPresentTerminalNode { |
| 263 | IterationResult Run(const ElementRange& range, PathWriteContext* context) { |
| 264 | return context->AppendDefLevels(range.end - range.start, def_level); |
| 265 | // No need to worry about rep levels, because this state should |
| 266 | // only be applicable for after all list/repeated values |
| 267 | // have been evaluated in the path. |
| 268 | } |
| 269 | int16_t def_level; |
| 270 | }; |
| 271 |
nothing calls this directly
no test coverage detected