From b0e755d0f148df3203d9e4c2e3818bd27d32a5cd Mon Sep 17 00:00:00 2001 From: apstndb <803393+apstndb@users.noreply.github.com> Date: Sat, 28 Sep 2024 17:40:06 +0900 Subject: [PATCH] Fix receiver of isExpr --- ast/ast.go | 70 +++++++++++++++++++++++++++--------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/ast/ast.go b/ast/ast.go index 34159549..851d74d1 100644 --- a/ast/ast.go +++ b/ast/ast.go @@ -123,41 +123,41 @@ type Expr interface { isExpr() } -func (BinaryExpr) isExpr() {} -func (UnaryExpr) isExpr() {} -func (InExpr) isExpr() {} -func (IsNullExpr) isExpr() {} -func (IsBoolExpr) isExpr() {} -func (BetweenExpr) isExpr() {} -func (SelectorExpr) isExpr() {} -func (IndexExpr) isExpr() {} -func (CallExpr) isExpr() {} -func (CountStarExpr) isExpr() {} -func (CastExpr) isExpr() {} -func (ExtractExpr) isExpr() {} -func (CaseExpr) isExpr() {} -func (ParenExpr) isExpr() {} -func (ScalarSubQuery) isExpr() {} -func (ArraySubQuery) isExpr() {} -func (ExistsSubQuery) isExpr() {} -func (Param) isExpr() {} -func (Ident) isExpr() {} -func (Path) isExpr() {} -func (ArrayLiteral) isExpr() {} -func (StructLiteral) isExpr() {} -func (NullLiteral) isExpr() {} -func (BoolLiteral) isExpr() {} -func (IntLiteral) isExpr() {} -func (FloatLiteral) isExpr() {} -func (StringLiteral) isExpr() {} -func (BytesLiteral) isExpr() {} -func (DateLiteral) isExpr() {} -func (TimestampLiteral) isExpr() {} -func (NumericLiteral) isExpr() {} -func (JSONLiteral) isExpr() {} -func (*NewConstructor) isExpr() {} -func (*BracedNewConstructor) isExpr() {} -func (*BracedConstructor) isExpr() {} +func (BinaryExpr) isExpr() {} +func (UnaryExpr) isExpr() {} +func (InExpr) isExpr() {} +func (IsNullExpr) isExpr() {} +func (IsBoolExpr) isExpr() {} +func (BetweenExpr) isExpr() {} +func (SelectorExpr) isExpr() {} +func (IndexExpr) isExpr() {} +func (CallExpr) isExpr() {} +func (CountStarExpr) isExpr() {} +func (CastExpr) isExpr() {} +func (ExtractExpr) isExpr() {} +func (CaseExpr) isExpr() {} +func (ParenExpr) isExpr() {} +func (ScalarSubQuery) isExpr() {} +func (ArraySubQuery) isExpr() {} +func (ExistsSubQuery) isExpr() {} +func (Param) isExpr() {} +func (Ident) isExpr() {} +func (Path) isExpr() {} +func (ArrayLiteral) isExpr() {} +func (StructLiteral) isExpr() {} +func (NullLiteral) isExpr() {} +func (BoolLiteral) isExpr() {} +func (IntLiteral) isExpr() {} +func (FloatLiteral) isExpr() {} +func (StringLiteral) isExpr() {} +func (BytesLiteral) isExpr() {} +func (DateLiteral) isExpr() {} +func (TimestampLiteral) isExpr() {} +func (NumericLiteral) isExpr() {} +func (JSONLiteral) isExpr() {} +func (NewConstructor) isExpr() {} +func (BracedNewConstructor) isExpr() {} +func (BracedConstructor) isExpr() {} // Arg represents argument of function call. type Arg interface {