LibJS: Enable EXPLICIT_SYMBOL_EXPORT and annotate minimum symbol set

This commit is contained in:
ayeteadoe 2025-07-19 13:49:30 -07:00 committed by Tim Flynn
commit 2e2484257d
Notes: github-actions[bot] 2025-07-22 15:52:50 +00:00
61 changed files with 167 additions and 124 deletions

View file

@ -9,6 +9,7 @@
#include <LibJS/Bytecode/Executable.h>
#include <LibJS/Bytecode/Label.h>
#include <LibJS/Bytecode/Register.h>
#include <LibJS/Export.h>
#include <LibJS/Forward.h>
#include <LibJS/Heap/Cell.h>
#include <LibJS/Runtime/FunctionKind.h>
@ -19,7 +20,7 @@ namespace JS::Bytecode {
class InstructionStreamIterator;
class Interpreter {
class JS_API Interpreter {
public:
explicit Interpreter(VM&);
~Interpreter();