| 137 | } |
| 138 | |
| 139 | type IndexOperation struct { |
| 140 | Object Expr |
| 141 | Operation TokenKind |
| 142 | Index Expr |
| 143 | } |
| 144 | |
| 145 | func (i *IndexOperation) Accept(visitor ASTVisitor) error { |
| 146 | visitor.Enter(i) |
nothing calls this directly
no outgoing calls
no test coverage detected