1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
// Code generated from java-escape by ANTLR 4.11.1. DO NOT EDIT.
package parser // Age
import "github.com/antlr/antlr4/runtime/Go/antlr/v4"
type BaseAgeVisitor struct {
*antlr.BaseParseTreeVisitor
}
func (v *BaseAgeVisitor) VisitAgeout(ctx *AgeoutContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitVertex(ctx *VertexContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitEdge(ctx *EdgeContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitPath(ctx *PathContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitValue(ctx *ValueContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitProperties(ctx *PropertiesContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitPair(ctx *PairContext) interface{} {
return v.VisitChildren(ctx)
}
func (v *BaseAgeVisitor) VisitArr(ctx *ArrContext) interface{} {
return v.VisitChildren(ctx)
}
|