(out, type, start, end)
| 596 | * @returns {MutableToken} `out` |
| 597 | */ |
| 598 | const fill = (out, type, start, end) => { |
| 599 | out.type = type; |
| 600 | out.start = start; |
| 601 | out.end = end; |
| 602 | return out; |
| 603 | }; |
| 604 | |
| 605 | /** |
| 606 | * Whitespace token. Caller advances past the leading code point so |
no outgoing calls
no test coverage detected