Skip to content

Commit

Permalink
property destructuring isn't available on v1.6 ...
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed May 27, 2021
1 parent 917b579 commit 25021e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/virtualprocess.jl
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ function _virtual_process!(toplevelex::Expr,
if @capture(x, $pat)
force_concretize = true
with_toplevel_logger(interp, (DEBUG_LOGGER_LEVEL)) do io
(; line, file) = lnn
line, file = lnn.line, lnn.file
x′ = rmlines(normalise(x))
println(io, "concretization pattern `$pat` matched `$x′` at $file:$line")
end
Expand Down Expand Up @@ -717,7 +717,7 @@ function partially_interpret!(interp::ConcreteInterpreter, mod::Module, src::Cod
concretize = select_statements(src)

with_toplevel_logger(interp.interp, (DEBUG_LOGGER_LEVEL)) do io
(; line, file) = interp.lnn
line, file = interp.lnn.line, interp.lnn.file
println(io, "concretization plan at $file:$line:")
print_with_code(io, src, concretize)
end
Expand Down

2 comments on commit 25021e6

@aviatesk
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/37629

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.1 -m "<description of version>" 25021e601814e511c4e8ee7afd93e1ac4192f4c2
git push origin v0.3.1

Please sign in to comment.