mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
LibJS: Use correct include + object class for Function{Object,Prototype}
Not causing any real issue, just noticed while debugging vptr sanitation errors.
This commit is contained in:
parent
1c0fc75cb6
commit
98a6f962a0
3 changed files with 2 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
|||
namespace JS {
|
||||
|
||||
class FunctionObject : public Object {
|
||||
JS_OBJECT(Function, Object);
|
||||
JS_OBJECT(FunctionObject, Object);
|
||||
|
||||
public:
|
||||
virtual ~FunctionObject() = default;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue