StringLiteral represents a string literal.
| 355 | |
| 356 | // StringLiteral represents a string literal. |
| 357 | type StringLiteral struct { |
| 358 | Val string |
| 359 | } |
| 360 | |
| 361 | // Type returns the type. |
| 362 | func (l *StringLiteral) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected