mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
LibJS: Stop qualifying AK::Function
Now that JS function objects are JS::FunctionObject, we can stop qualifying AK::Function and just say "Function" everywhere. Nice. :^)
This commit is contained in:
parent
745a1dbb5d
commit
1bd52ce789
15 changed files with 26 additions and 26 deletions
|
@ -252,9 +252,9 @@ public:
|
|||
|
||||
void promise_rejection_tracker(const Promise&, Promise::RejectionOperation) const;
|
||||
|
||||
AK::Function<void()> on_call_stack_emptied;
|
||||
AK::Function<void(const Promise&)> on_promise_unhandled_rejection;
|
||||
AK::Function<void(const Promise&)> on_promise_rejection_handled;
|
||||
Function<void()> on_call_stack_emptied;
|
||||
Function<void(const Promise&)> on_promise_unhandled_rejection;
|
||||
Function<void(const Promise&)> on_promise_rejection_handled;
|
||||
|
||||
private:
|
||||
VM();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue