mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 15:28:17 +00:00

Problem: Vim script debugger functionality needs cleanup.
Solution: Move debugger code to a separate file. Add more tests. (Yegappan
Lakshmanan, closes vim/vim#4285)
eead75c5e8
Good to have for eval_expr_restore in v8.2.3417.
Doesn't actually add any tests.
12 lines
210 B
C
12 lines
210 B
C
#ifndef NVIM_DEBUGGER_H
|
|
#define NVIM_DEBUGGER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "debugger.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_DEBUGGER_H
|