Skip to content

Commit 22089f4

Browse files
committed
Disable an unused function
1 parent 128f000 commit 22089f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ _scopename(parent, child, rest...) = Expr(:., parent, _scopename(child, rest...)
132132

133133
isidentical(x) = Base.Fix2(===, x) # recommended over isequal(::Symbol) since it cannot be invalidated
134134

135-
is_goto_node(@nospecialize(node)) = isa(node, GotoNode) || isexpr(node, :gotoifnot)
135+
# is_goto_node(@nospecialize(node)) = isa(node, GotoNode) || isexpr(node, :gotoifnot)
136136

137137
if isdefined(Core, :GotoIfNot)
138138
is_GotoIfNot(@nospecialize(node)) = isa(node, Core.GotoIfNot)

0 commit comments

Comments
 (0)