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.
1 parent 796672e commit 56d64efCopy full SHA for 56d64ef
internal/engine/dolphin/convert.go
@@ -1092,7 +1092,7 @@ func (c *cc) convertPatternInExpr(n *pcast.PatternInExpr) ast.Node {
1092
return in
1093
}
1094
1095
-func (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeExpr) ast.Node {
+func (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeOrIlikeExpr) ast.Node {
1096
return &ast.A_Expr{
1097
Kind: ast.A_Expr_Kind(9),
1098
Name: &ast.List{
@@ -1703,7 +1703,7 @@ func (c *cc) convert(node pcast.Node) ast.Node {
1703
case *pcast.PatternInExpr:
1704
return c.convertPatternInExpr(n)
1705
1706
- case *pcast.PatternLikeExpr:
+ case *pcast.PatternLikeOrIlikeExpr:
1707
return c.convertPatternLikeExpr(n)
1708
1709
case *pcast.PatternRegexpExpr:
0 commit comments