mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:38:13 +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
16
Libraries/LibJS/Runtime/GlobalObject.h
Normal file
16
Libraries/LibJS/Runtime/GlobalObject.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibJS/Runtime/Object.h>
|
||||
|
||||
namespace JS {
|
||||
|
||||
class GlobalObject final : public Object {
|
||||
public:
|
||||
explicit GlobalObject();
|
||||
virtual ~GlobalObject() override;
|
||||
|
||||
private:
|
||||
virtual const char* class_name() const override { return "GlobalObject"; }
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue