| 3129 | } |
| 3130 | |
| 3131 | type If struct { |
| 3132 | Condition Expr |
| 3133 | IfStatements []Statement |
| 3134 | ElseStatements []Statement |
| 3135 | Keyword string |
| 3136 | } |
| 3137 | |
| 3138 | func (node *If) Format(buf *nodeBuffer) { |
| 3139 | buf.Printf("if %v", node.Condition) |
nothing calls this directly
no outgoing calls
no test coverage detected