Skip to content

Commit a162364

Browse files
authored
update to JuliaInterpreter 0.9.46 (#128)
1 parent c3ee610 commit a162364

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name = "LoweredCodeUtils"
22
uuid = "6f1432cf-f94c-5a45-995e-cdbf5db27b0b"
3-
authors = ["Tim Holy <[email protected]>"]
43
version = "3.2.1"
4+
authors = ["Tim Holy <[email protected]>"]
55

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

99
[compat]
10-
JuliaInterpreter = "0.9.44"
10+
JuliaInterpreter = "0.9.46"
1111
julia = "1.10"
1212

1313
[extras]

src/LoweredCodeUtils.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ module LoweredCodeUtils
1111

1212
using JuliaInterpreter
1313
using JuliaInterpreter: SSAValue, SlotNumber, Frame
14-
using JuliaInterpreter: @lookup, moduleof, pc_expr, step_expr!, is_global_ref, is_global_ref_egal, is_quotenode_egal, whichtt,
15-
next_until!, finish_and_return!, get_return, nstatements, codelocation, linetable,
16-
is_return, lookup_return
14+
using JuliaInterpreter: codelocation, is_global_ref, is_global_ref_egal, is_quotenode_egal, is_return,
15+
lookup, lookup_return, linetable, moduleof, next_until!, nstatements, pc_expr,
16+
step_expr!, whichtt, finish_and_return!
1717

1818
include("packagedef.jl")
1919

src/signatures.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function signature(@nospecialize(recurse), frame::Frame, @nospecialize(stmt), pc
5353
stmt = pc_expr(frame, pc)
5454
end
5555
isa(stmt, Expr) || return nothing, pc
56-
sigsv = @lookup(frame, stmt.args[2])::SimpleVector
56+
sigsv = lookup(frame, stmt.args[2])::SimpleVector
5757
sigt = signature(sigsv)
5858
return sigt, lastpc
5959
end

0 commit comments

Comments
 (0)