diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-16 14:20:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-16 14:37:19 +0100 |
commit | 19452230cd86659eecc5856767d223f44ddbfed9 (patch) | |
tree | fa03a2669b81542beb94df432a0d1479791b23d5 /Libraries/LibJS/Interpreter.h | |
parent | 6780d70fb1828575979810892256f2a763f05517 (diff) | |
download | serenity-19452230cd86659eecc5856767d223f44ddbfed9.zip |
LibJS: Add "Heap" and "Runtime" subdirectories
Let's try to keep LibJS tidy as it expands. :^)
Diffstat (limited to 'Libraries/LibJS/Interpreter.h')
-rw-r--r-- | Libraries/LibJS/Interpreter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibJS/Interpreter.h b/Libraries/LibJS/Interpreter.h index a3c45a831f..fe9db39d90 100644 --- a/Libraries/LibJS/Interpreter.h +++ b/Libraries/LibJS/Interpreter.h @@ -30,8 +30,8 @@ #include <AK/String.h> #include <AK/Vector.h> #include <LibJS/Forward.h> -#include <LibJS/Heap.h> -#include <LibJS/Value.h> +#include <LibJS/Heap/Heap.h> +#include <LibJS/Runtime/Value.h> namespace JS { |