* @param {string} comment leading comment text * @returns {string} rendered literal with property access suffix
(comment)
| 96 | * @returns {string} rendered literal with property access suffix |
| 97 | */ |
| 98 | render(comment) { |
| 99 | return this.value.render(comment) + propertyAccess(this.suffix); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /** |
nothing calls this directly
no test coverage detected