| 126 | // string literal expression |
| 127 | struct String : public Expression { |
| 128 | String(StringLiteral s) : literal(s) { } |
| 129 | virtual void transpile(Transpiler& transpiler) |
| 130 | { |
| 131 | putc('"', transpiler.out); |
nothing calls this directly
no outgoing calls
no test coverage detected