Skip to content

Commit

Permalink
Ignore :aliasscope and :popaliasscope (#581)
Browse files Browse the repository at this point in the history
Fixes #574
  • Loading branch information
timholy authored Aug 11, 2023
1 parent 3ab2674 commit 14e454b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interpret.jl
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ function eval_rhs(@nospecialize(recurse), frame, node::Expr)
elseif head === :boundscheck
return true
elseif head === :meta || head === :inbounds || head === :loopinfo ||
head === :gc_preserve_begin || head === :gc_preserve_end
head === :gc_preserve_begin || head === :gc_preserve_end ||
head === :aliasscope || head === :popaliasscope
return nothing
elseif head === :method && length(node.args) == 1
return evaluate_methoddef(frame, node)
Expand Down

0 comments on commit 14e454b

Please sign in to comment.