(expression: lua.StringLiteral)
| 628 | } |
| 629 | |
| 630 | public printStringLiteral(expression: lua.StringLiteral): SourceNode { |
| 631 | return this.createSourceNode(expression, escapeString(expression.value)); |
| 632 | } |
| 633 | |
| 634 | public printNumericLiteral(expression: lua.NumericLiteral): SourceNode { |
| 635 | return this.createSourceNode(expression, String(expression.value)); |
no test coverage detected