(node antlr.ParseTree, aggregate interface{}, nextResult interface{})
| 129 | } |
| 130 | |
| 131 | func (v *ASTBuilder) aggregateResult(node antlr.ParseTree, aggregate interface{}, nextResult interface{}) interface{} { |
| 132 | location := v.getLocation(node) |
| 133 | if nextResult == nil { |
| 134 | panic(fmt.Errorf("%v operation not yet implemented at (line:%d, col:%d)", node.GetText(), location.Line, location.CharPosition)) |
| 135 | } |
| 136 | if aggregate == nil { |
| 137 | return nextResult |
| 138 | } |
| 139 | panic(fmt.Errorf("%v operation not yet implemented at (line:%d, col:%d)", node.GetText(), location.Line, location.CharPosition)) |
| 140 | } |
| 141 | |
| 142 | func (v *ASTBuilder) getQualifiedName(ctx antlrgen.IQualifiedNameContext) *tree.QualifiedName { |
| 143 | var result *tree.QualifiedName |
no test coverage detected