Skip to content

Commit 25e5187

Browse files
chore(engine/dolphin): remove references to deprecated pcast.ChangeStmt (#4057)
1 parent 8abf549 commit 25e5187

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

internal/engine/dolphin/convert.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -727,10 +727,6 @@ func (c *cc) convertCaseExpr(n *pcast.CaseExpr) ast.Node {
727727
}
728728
}
729729

730-
func (c *cc) convertChangeStmt(n *pcast.ChangeStmt) ast.Node {
731-
return todo(n)
732-
}
733-
734730
func (c *cc) convertCleanupTableLockStmt(n *pcast.CleanupTableLockStmt) ast.Node {
735731
return todo(n)
736732
}
@@ -1501,9 +1497,6 @@ func (c *cc) convert(node pcast.Node) ast.Node {
15011497
case *pcast.CaseExpr:
15021498
return c.convertCaseExpr(n)
15031499

1504-
case *pcast.ChangeStmt:
1505-
return c.convertChangeStmt(n)
1506-
15071500
case *pcast.CleanupTableLockStmt:
15081501
return c.convertCleanupTableLockStmt(n)
15091502

0 commit comments

Comments
 (0)