(input: SourceChunk = "")
| 271 | } |
| 272 | |
| 273 | protected indent(input: SourceChunk = ""): SourceChunk { |
| 274 | return this.concatNodes(this.currentIndent, input); |
| 275 | } |
| 276 | |
| 277 | protected createSourceNode(node: lua.Node, chunks: SourceChunk | SourceChunk[], name?: string): SourceNode { |
| 278 | const { line, column } = lua.getOriginalPos(node); |
no test coverage detected