(self, toks: ParseResults)
| 2384 | } |
| 2385 | |
| 2386 | def space(self, toks: ParseResults) -> T.Any: |
| 2387 | num = self._space_widths[toks["space"]] |
| 2388 | box = self._make_space(num) |
| 2389 | return [box] |
| 2390 | |
| 2391 | def customspace(self, toks: ParseResults) -> T.Any: |
| 2392 | return [self._make_space(toks["space"])] |
nothing calls this directly
no test coverage detected