File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/debug_adapter/lib/debug_adapter Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ defmodule ElixirLS.DebugAdapter.Server do
102
102
103
103
env = unquote ( env_with_line_from_asts ( first_ast_chunk ) )
104
104
105
- next? = unquote ( __MODULE__ ) . pry_with_next ( true , binding ( ) , env )
105
+ next? = unquote ( __MODULE__ ) . __next__ ( true , binding ( ) , env )
106
106
value = unquote ( pipe_chunk_of_asts ( first_ast_chunk ) )
107
107
108
108
unquote ( __MODULE__ ) . __dbg_pipe_step__ (
@@ -121,7 +121,7 @@ defmodule ElixirLS.DebugAdapter.Server do
121
121
quote do
122
122
unquote ( ast_acc )
123
123
env = unquote ( env_with_line_from_asts ( asts_chunk ) )
124
- next? = unquote ( __MODULE__ ) . pry_with_next ( next? , binding ( ) , env )
124
+ next? = unquote ( __MODULE__ ) . __next__ ( next? , binding ( ) , env )
125
125
value = unquote ( piped_asts )
126
126
127
127
unquote ( __MODULE__ ) . __dbg_pipe_step__ (
@@ -142,7 +142,7 @@ defmodule ElixirLS.DebugAdapter.Server do
142
142
end
143
143
end
144
144
145
- def pry_with_next ( next? , binding , opts_or_env ) when is_boolean ( next? ) do
145
+ def __next__ ( next? , binding , opts_or_env ) when is_boolean ( next? ) do
146
146
if next? do
147
147
{ :current_stacktrace , stacktrace } = Process . info ( self ( ) , :current_stacktrace )
148
148
You can’t perform that action at this time.
0 commit comments