1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

LibJS: Implement Function.prototype.bind()

This commit is contained in:
Jack Karamanian 2020-04-19 15:03:02 -05:00 committed by Andreas Kling
parent b3800829da
commit 1fa0c7304d
10 changed files with 317 additions and 6 deletions

View file

@ -52,6 +52,7 @@
namespace JS {
class ASTNode;
class BoundFunction;
class Cell;
class DeferGC;
class Error;