RawString retrieves the underlying string of the StrVal.
()
| 484 | |
| 485 | // RawString retrieves the underlying string of the StrVal. |
| 486 | func (expr *StrVal) RawString() string { |
| 487 | return expr.s |
| 488 | } |
| 489 | |
| 490 | // Format implements the NodeFormatter interface. |
| 491 | func (expr *StrVal) Format(ctx *FmtCtx) { |