(kind: lua.Operator)
| 848 | } |
| 849 | |
| 850 | public printOperator(kind: lua.Operator): SourceNode { |
| 851 | return new SourceNode(null, null, this.relativeSourcePath, LuaPrinter.operatorMap[kind]); |
| 852 | } |
| 853 | |
| 854 | protected joinChunksWithComma(chunks: SourceChunk[]): SourceChunk[] { |
| 855 | return intersperse(chunks, ", "); |
no outgoing calls
no test coverage detected