Skip to content

Commit

Permalink
require JuliaInterpreter v0.9.36
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Sep 10, 2024
1 parent 1d08755 commit e27521a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JET"
uuid = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
authors = ["Shuhei Kadowaki <[email protected]>"]
version = "0.9.8"
version = "0.9.9"

[deps]
CodeTracking = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
Expand Down Expand Up @@ -29,7 +29,7 @@ CodeTracking = "1.3.1"
Cthulhu = "2.14.0"
Example = "0.5.3"
InteractiveUtils = "1.10"
JuliaInterpreter = "0.9"
JuliaInterpreter = "0.9.36"
Libdl = "1.10"
Logging = "1.10"
LoweredCodeUtils = "3"
Expand Down
4 changes: 2 additions & 2 deletions src/toplevel/virtualprocess.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,7 @@ function JuliaInterpreter.step_expr!(interp::ConcreteInterpreter, frame::Frame,
return frame.pc += 1
end

res = @invoke JuliaInterpreter.step_expr!(interp::Any, frame::Any, node::Any, true::Bool)
res = @invoke JuliaInterpreter.step_expr!(interp::Any, frame::Frame, node::Any, istoplevel::Bool)

should_analyze_from_definitions(interp.config) && collect_toplevel_signature!(interp, frame, node)

Expand Down Expand Up @@ -1585,7 +1585,7 @@ const JULIAINTERPRETER_BUILTINS_FILE = let
end

# handle errors from toplevel user code
function JuliaInterpreter.handle_err(interp::ConcreteInterpreter, frame, err)
function JuliaInterpreter.handle_err(interp::ConcreteInterpreter, frame::Frame, @nospecialize(err))
# catch stack trace
bt = catch_backtrace()
st = stacktrace(bt)
Expand Down

0 comments on commit e27521a

Please sign in to comment.