We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pcast.ChangeStmt
1 parent 8abf549 commit 25e5187Copy full SHA for 25e5187
internal/engine/dolphin/convert.go
@@ -727,10 +727,6 @@ func (c *cc) convertCaseExpr(n *pcast.CaseExpr) ast.Node {
727
}
728
729
730
-func (c *cc) convertChangeStmt(n *pcast.ChangeStmt) ast.Node {
731
- return todo(n)
732
-}
733
-
734
func (c *cc) convertCleanupTableLockStmt(n *pcast.CleanupTableLockStmt) ast.Node {
735
return todo(n)
736
@@ -1501,9 +1497,6 @@ func (c *cc) convert(node pcast.Node) ast.Node {
1501
1497
case *pcast.CaseExpr:
1502
1498
return c.convertCaseExpr(n)
1503
1499
1504
- case *pcast.ChangeStmt:
1505
- return c.convertChangeStmt(n)
1506
1507
1500
case *pcast.CleanupTableLockStmt:
1508
return c.convertCleanupTableLockStmt(n)
1509
0 commit comments