mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 01:17:36 +00:00
LibJS: Make NativeProperty a plain Cell instead of an Object
This removes the need for NativeProperty objects to have a prototype, which just made things confusing.
This commit is contained in:
parent
ba641e97d9
commit
0166a1fa74
6 changed files with 33 additions and 25 deletions
|
@ -110,7 +110,6 @@ public:
|
|||
virtual bool is_function() const { return false; }
|
||||
virtual bool is_native_function() const { return false; }
|
||||
virtual bool is_bound_function() const { return false; }
|
||||
virtual bool is_native_property() const { return false; }
|
||||
virtual bool is_proxy_object() const { return false; }
|
||||
virtual bool is_regexp_object() const { return false; }
|
||||
virtual bool is_boolean_object() const { return false; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue