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 622c182 commit eb915ffCopy full SHA for eb915ff
internal/engine/dolphin/convert.go
@@ -1103,7 +1103,7 @@ func (c *cc) convertPatternInExpr(n *pcast.PatternInExpr) ast.Node {
1103
return in
1104
}
1105
1106
-func (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeExpr) ast.Node {
+func (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeOrIlikeExpr) ast.Node {
1107
return &ast.A_Expr{
1108
Kind: ast.A_Expr_Kind(9),
1109
Name: &ast.List{
@@ -1719,7 +1719,7 @@ func (c *cc) convert(node pcast.Node) ast.Node {
1719
case *pcast.PatternInExpr:
1720
return c.convertPatternInExpr(n)
1721
1722
- case *pcast.PatternLikeExpr:
+ case *pcast.PatternLikeOrIlikeExpr:
1723
return c.convertPatternLikeExpr(n)
1724
1725
case *pcast.PatternRegexpExpr:
0 commit comments