StringLiteralNode represents a string literal value
| 164 | |
| 165 | // StringLiteralNode represents a string literal value |
| 166 | type StringLiteralNode struct { |
| 167 | Value string |
| 168 | } |
| 169 | |
| 170 | func (s *StringLiteralNode) Render() string { |
| 171 | // GitHub Actions single-quoted strings escape embedded single quotes by doubling them. |
nothing calls this directly
no outgoing calls
no test coverage detected