1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:27:35 +00:00

LibJS: Add "Heap" and "Runtime" subdirectories

Let's try to keep LibJS tidy as it expands. :^)
This commit is contained in:
Andreas Kling 2020-03-16 14:20:30 +01:00
parent 6780d70fb1
commit 19452230cd
39 changed files with 99 additions and 98 deletions

View file

@ -1,23 +1,23 @@
OBJS = \
AST.o \
Cell.o \
Function.o \
GlobalObject.o \
Heap.o \
HeapBlock.o \
Heap/Heap.o \
Heap/HeapBlock.o \
Interpreter.o \
Lexer.o \
NativeFunction.o \
NativeProperty.o \
Object.o \
ObjectPrototype.o \
Parser.o \
PrimitiveString.o \
ScriptFunction.o \
StringObject.o \
StringPrototype.o \
Token.o \
Value.o
Runtime/Cell.o \
Runtime/Function.o \
Runtime/GlobalObject.o \
Runtime/NativeFunction.o \
Runtime/NativeProperty.o \
Runtime/Object.o \
Runtime/ObjectPrototype.o \
Runtime/PrimitiveString.o \
Runtime/ScriptFunction.o \
Runtime/StringObject.o \
Runtime/StringPrototype.o \
Runtime/Value.o \
Token.o
LIBRARY = libjs.a