omniAST wraps an omni AST node to implement the base.AST interface.
| 17 | |
| 18 | // omniAST wraps an omni AST node to implement the base.AST interface. |
| 19 | type omniAST struct { |
| 20 | node ast.Node |
| 21 | startPos *storepb.Position |
| 22 | } |
| 23 | |
| 24 | // ASTStartPosition implements base.AST. |
| 25 | func (a *omniAST) ASTStartPosition() *storepb.Position { |
nothing calls this directly
no outgoing calls
no test coverage detected