mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-06 08:09:45 +00:00
LibJS: Add Function.prototype and make "new" Objects delegate to it
This commit is contained in:
parent
0593ce406b
commit
37fe16a99c
Notes:
sideshowbarker
2024-07-19 08:05:44 +09:00
Author: https://github.com/awesomekling
Commit: 37fe16a99c
2 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,8 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <AK/FlyString.h>
|
||||
#include <LibJS/Heap/Heap.h>
|
||||
#include <LibJS/Runtime/Function.h>
|
||||
#include <LibJS/Runtime/Value.h>
|
||||
|
||||
|
@ -31,6 +33,7 @@ namespace JS {
|
|||
|
||||
Function::Function()
|
||||
{
|
||||
put("prototype", heap().allocate<Object>());
|
||||
}
|
||||
|
||||
Function::~Function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue