LibJS: Implement Function.prototype.bind()

This commit is contained in:
Jack Karamanian 2020-04-19 15:03:02 -05:00 committed by Andreas Kling
commit 1fa0c7304d
Notes: sideshowbarker 2024-07-19 07:25:18 +09:00
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;