| 544 | // multi-way assignment statement |
| 545 | struct Assign : public Statement { |
| 546 | Assign(List<Expression> *l, List<Expression> *r) : lhs(l), rhs(r) { } |
| 547 | virtual void transpile(Transpiler& transpiler) |
| 548 | { |
| 549 | fprintf(transpiler.out, "(assign "); |
nothing calls this directly
no outgoing calls
no test coverage detected