()
| 61 | } |
| 62 | |
| 63 | export function newline(): NewlineSource { |
| 64 | // We're returning a new object instead of using a singleton |
| 65 | // here because `Renderer` will modify `indentationChange`. |
| 66 | return { kind: "newline", indentationChange: 0 }; |
| 67 | } |
| 68 | |
| 69 | export type Sourcelike = Source | string | Name | SourcelikeArray; |
| 70 | export interface SourcelikeArray extends Array<Sourcelike> {} |
no outgoing calls
no test coverage detected
searching dependent graphs…