(self, toks: ParseResults)
| 2389 | return [box] |
| 2390 | |
| 2391 | def customspace(self, toks: ParseResults) -> T.Any: |
| 2392 | return [self._make_space(toks["space"])] |
| 2393 | |
| 2394 | def symbol(self, s: str, loc: int, |
| 2395 | toks: ParseResults | dict[str, str]) -> T.Any: |
nothing calls this directly
no test coverage detected