Fix includes in source/scriptinterface

Make include-what-you-use happy with files in source/scriptinterface and
fix what needs to be fixed.

Ref: #8086
Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2025-08-04 19:04:30 +02:00
parent 32fd10691d
commit b066bb0b99
27 changed files with 328 additions and 86 deletions
+9
View File
@@ -19,18 +19,27 @@
#define INCLUDED_SCRIPTMODULELOADER
#include "lib/file/vfs/vfs_path.h"
#include "lib/path.h"
#include "scriptinterface/ScriptTypes.h"
#include <cstddef>
#include <exception>
#include <functional>
#include <iterator>
#include <js/RootingAPI.h>
#include <js/TypeDecls.h>
#include <tuple>
#include <unordered_map>
#include <utility>
#include <variant>
#include <vector>
class JSObject;
class ScriptContext;
class ScriptInterface;
class ScriptRequest;
namespace JS { class Value; }
struct JSContext;
namespace Script
{