* @param {string} comment leading comment text * @returns {string} parenthesized literal with comment
(comment)
| 53 | * @returns {string} parenthesized literal with comment |
| 54 | */ |
| 55 | render(comment) { |
| 56 | return `(${comment}${this.renderLiteral()})`; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * @param {ObjectSerializerContext} context context |
no test coverage detected