Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "LoweredCodeUtils"
uuid = "6f1432cf-f94c-5a45-995e-cdbf5db27b0b"
authors = ["Tim Holy <[email protected]>"]
version = "3.2.1"
authors = ["Tim Holy <[email protected]>"]

[deps]
JuliaInterpreter = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"

[compat]
JuliaInterpreter = "0.9.44"
JuliaInterpreter = "0.9.46"
julia = "1.10"

[extras]
Expand Down
6 changes: 3 additions & 3 deletions src/LoweredCodeUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ module LoweredCodeUtils

using JuliaInterpreter
using JuliaInterpreter: SSAValue, SlotNumber, Frame
using JuliaInterpreter: @lookup, moduleof, pc_expr, step_expr!, is_global_ref, is_global_ref_egal, is_quotenode_egal, whichtt,
next_until!, finish_and_return!, get_return, nstatements, codelocation, linetable,
is_return, lookup_return
using JuliaInterpreter: codelocation, is_global_ref, is_global_ref_egal, is_quotenode_egal, is_return,
lookup, lookup_return, linetable, moduleof, next_until!, nstatements, pc_expr,
step_expr!, whichtt, finish_and_return!

include("packagedef.jl")

Expand Down
2 changes: 1 addition & 1 deletion src/signatures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function signature(@nospecialize(recurse), frame::Frame, @nospecialize(stmt), pc
stmt = pc_expr(frame, pc)
end
isa(stmt, Expr) || return nothing, pc
sigsv = @lookup(frame, stmt.args[2])::SimpleVector
sigsv = lookup(frame, stmt.args[2])::SimpleVector
sigt = signature(sigsv)
return sigt, lastpc
end
Expand Down
Loading