1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00
serenity/Libraries/LibJS/GlobalObject.h
Andreas Kling 1448f4384d LibJS: Move GlobalObject to its own Object subclass
This is mostly for tidiness at the moment.
2020-03-12 20:11:35 +01:00

16 lines
275 B
C++

#pragma once
#include <LibJS/Object.h>
namespace JS {
class GlobalObject final : public Object {
public:
explicit GlobalObject(Heap&);
virtual ~GlobalObject() override;
private:
virtual const char* class_name() const override { return "GlobalObject"; }
};
}