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:
parent
6780d70fb1
commit
19452230cd
39 changed files with 99 additions and 98 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue