mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00

Allow Include What You Use to remove unnecessary includes and only include what is necessary. This helps with reducing compilation times and makes it easier to visualise which dependencies are actually required. Work on https://github.com/neovim/neovim/issues/549, but doesn't close it since this only works fully for .c files and not headers.
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
#ifndef NVIM_LUA_EXECUTOR_H
|
|
#define NVIM_LUA_EXECUTOR_H
|
|
|
|
#include <lauxlib.h>
|
|
#include <lua.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/api/private/helpers.h"
|
|
#include "nvim/assert.h"
|
|
#include "nvim/eval/typval.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/func_attr.h"
|
|
#include "nvim/lua/converter.h"
|
|
#include "nvim/macros.h"
|
|
#include "nvim/types.h"
|
|
#include "nvim/usercmd.h"
|
|
|
|
// Generated by msgpack-gen.lua
|
|
void nlua_add_api_functions(lua_State *lstate) REAL_FATTR_NONNULL_ALL;
|
|
|
|
typedef struct {
|
|
LuaRef nil_ref;
|
|
LuaRef empty_dict_ref;
|
|
int ref_count;
|
|
#if __has_feature(address_sanitizer)
|
|
PMap(handle_T) ref_markers;
|
|
#endif
|
|
} nlua_ref_state_t;
|
|
|
|
#define NLUA_EXEC_STATIC(cstr, arg, err) nlua_exec(STATIC_CSTR_AS_STRING(cstr), arg, err)
|
|
|
|
#define NLUA_CLEAR_REF(x) \
|
|
do { \
|
|
/* Take the address to avoid double evaluation. #1375 */ \
|
|
if ((x) != LUA_NOREF) { \
|
|
api_free_luaref(x); \
|
|
(x) = LUA_NOREF; \
|
|
} \
|
|
} while (0)
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "lua/executor.h.generated.h"
|
|
#endif
|
|
|
|
EXTERN nlua_ref_state_t *nlua_global_refs INIT(= NULL);
|
|
EXTERN bool nlua_disable_preload INIT(= false);
|
|
|
|
#endif // NVIM_LUA_EXECUTOR_H
|