本文整理汇总了Golang中github.com/couchbase/query/expression.Visitor类的典型用法代码示例。如果您正苦于以下问题:Golang Visitor类的具体用法?Golang Visitor怎么用?Golang Visitor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Visitor类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Accept
/*
It calls the VisitFunction method by passing in the receiver to
and returns the interface. It is a visitor pattern.
*/
func (this *Sum) Accept(visitor expression.Visitor) (interface{}, error) {
return visitor.VisitFunction(this)
}
示例2: Accept
/*
It calls the VisitFunction method by passing in the receiver to
and returns the interface. It is a visitor pattern.
*/
func (this *ArrayAggDistinct) Accept(visitor expression.Visitor) (interface{}, error) {
return visitor.VisitFunction(this)
}
示例3: Accept
/*
It calls the VisitSubquery method by passing in the receiver to
and returns the interface. It is a visitor pattern.
*/
func (this *Subquery) Accept(visitor expression.Visitor) (interface{}, error) {
return visitor.VisitSubquery(this)
}
示例4: Accept
/*
It calls the VisitPositionalParameter method by passing in
the receiver and returns the interface. It is a visitor pattern.
*/
func (this *PositionalParameter) Accept(visitor expression.Visitor) (interface{}, error) {
return visitor.VisitPositionalParameter(this)
}