| 3117 | } |
| 3118 | |
| 3119 | type While struct { |
| 3120 | Condition Expr |
| 3121 | Statements []Statement |
| 3122 | } |
| 3123 | |
| 3124 | func (node *While) Format(buf *nodeBuffer) { |
| 3125 | buf.Printf("while %v", node.Condition) |
nothing calls this directly
no outgoing calls
no test coverage detected