You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using Salsa
julia>@derivedfoo(rt) =2
mefoo (generic function with 1 method)
julia>methods(foo)
# 1 method for generic function "foo":
[1] foo(rt) in Main at /Users/nathandaly/work/Delve/packages/Salsa/src/Salsa.jl:619
This should not list Salsa.jl as its line number.
Same for inputs:
julia>@declare_inputx(rt)::Int
(x, set_x!, delete_x!)
julia>methods(x)
# 1 method for generic function "x":
[1] x(rt) in Main at /Users/nathandaly/work/Delve/packages/Salsa/src/Salsa.jl:812
julia>methods(set_x!)
# 1 method for generic function "set_x!":
[1] set_x!(rt, value::Int64) in Main at /Users/nathandaly/work/Delve/packages/Salsa/src/Salsa.jl:816
julia>methods(delete_x!)
# 1 method for generic function "delete_x!":
[1] delete_x!(rt) in Main at /Users/nathandaly/work/Delve/packages/Salsa/src/Salsa.jl:820
The text was updated successfully, but these errors were encountered:
This should not list
Salsa.jl
as its line number.Same for inputs:
The text was updated successfully, but these errors were encountered: