File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ function sparam_syms(meth::Method)
57
57
return s
58
58
end
59
59
60
- separate_kwargs (args... ; kwargs... ) = (args, kwargs. data )
60
+ separate_kwargs (args... ; kwargs... ) = (args, values ( kwargs) )
61
61
62
62
pc_expr (src:: CodeInfo , pc) = src. code[pc]
63
63
pc_expr (framecode:: FrameCode , pc) = pc_expr (framecode. src, pc)
Original file line number Diff line number Diff line change 94
94
end
95
95
end
96
96
97
- f22 () = string (:(a+ b))
98
- @test step_through (f22) == " a + b"
99
- f22 () = string (QuoteNode (:a ))
100
- @test step_through (f22) == " :a"
97
+ let f22 () = string (:(a+ b))
98
+ @test step_through (f22) == " a + b"
99
+ end
100
+ let f22 () = string (QuoteNode (:a ))
101
+ @test step_through (f22) == " :a"
102
+ end
101
103
102
104
frame = enter_call (trivial, 2 )
103
105
@test debug_command (frame, :s ) === nothing
You can’t perform that action at this time.
0 commit comments