11@code_instead (== ) SourceCode Any
22@code_instead (== ) Any SourceCode
33@code_instead (== ) SourceCode SourceCode
4- @translate :: typeof (== ) :(= )
4+ @translate_default :: typeof (== ) :(= )
55
66@code_instead (!= ) SourceCode Any
77@code_instead (!= ) Any SourceCode
88@code_instead (!= ) SourceCode SourceCode
9- @translate :: typeof (!= ) Symbol (" <>" )
9+ @translate_default :: typeof (!= ) Symbol (" <>" )
1010
1111@code_instead (! ) SourceCode
12- @translate :: typeof (! ) :NOT
12+ @translate_default :: typeof (! ) :NOT
1313
1414@code_instead (& ) SourceCode Any
1515@code_instead (& ) Any SourceCode
1616@code_instead (& ) SourceCode SourceCode
17- @translate :: typeof (& ) :AND
17+ @translate_default :: typeof (& ) :AND
1818
1919@code_instead (| ) SourceCode Any
2020@code_instead (| ) Any SourceCode
2121@code_instead (| ) SourceCode SourceCode
22- @translate :: typeof (| ) :OR
22+ @translate_default :: typeof (| ) :OR
2323
2424@code_instead coalesce SourceCode Vararg{Any}
25- @translate :: typeof (coalesce) :COALESCE
25+ @translate_default :: typeof (coalesce) :COALESCE
2626
2727function get_column (source_row, column_name)
2828 SourceCode (source_row. source, Expr (:call , getproperty, source_row, column_name))
@@ -82,25 +82,25 @@ export if_else
8282@code_instead if_else SourceCode Any SourceCode
8383@code_instead if_else SourceCode SourceCode Any
8484@code_instead if_else SourceCode SourceCode SourceCode
85- @translate :: typeof (if_else) :IF
85+ @translate_default :: typeof (if_else) :IF
8686
8787@code_instead in SourceCode Any
8888@code_instead in Any SourceCode
8989@code_instead in SourceCode SourceCode
90- @translate :: typeof (in) :IN
90+ @translate_default :: typeof (in) :IN
9191
9292@code_instead isequal SourceCode Any
9393@code_instead isequal Any SourceCode
9494@code_instead isequal SourceCode SourceCode
95- @translate :: typeof (isequal) Symbol (" IS NOT DISTINCT FROM" )
95+ @translate_default :: typeof (isequal) Symbol (" IS NOT DISTINCT FROM" )
9696
9797@code_instead isless SourceCode Any
9898@code_instead isless Any SourceCode
9999@code_instead isless SourceCode SourceCode
100- @translate :: typeof (isless) :<
100+ @translate_default :: typeof (isless) :<
101101
102102@code_instead ismissing SourceCode
103- @translate :: typeof (ismissing) Symbol (" IS NULL" )
103+ @translate_default :: typeof (ismissing) Symbol (" IS NULL" )
104104
105105@code_instead occursin AbstractString SourceCode
106106@code_instead occursin Regex SourceCode
@@ -116,7 +116,7 @@ translate_dispatch(::typeof(occursin), needle::Regex, haystack; options...) =
116116 translate (haystack; options... ),
117117 replace (replace (needle. pattern, r" (?<!\\ )\.\* " => " %" ), r" (?<!\\ )\. " => " _" )
118118 )
119- @translate :: typeof (occursin) :LIKE
119+ @translate_default :: typeof (occursin) :LIKE
120120
121121@code_instead startswith SourceCode Any
122122@code_instead startswith Any SourceCode
0 commit comments