(char: string)
| 63 | |
| 64 | /** @internal */ |
| 65 | export const char = <A>(char: string): DocTreeToken<A> => { |
| 66 | const op = Object.create(proto) |
| 67 | op._tag = "CharToken" |
| 68 | op.char = char |
| 69 | return op |
| 70 | } |
| 71 | |
| 72 | /** @internal */ |
| 73 | export const text = <A>(text: string): DocTreeToken<A> => { |