mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 13:18:19 +00:00
LibJS: Rename Function => FunctionObject
This commit is contained in:
parent
e389ae3c97
commit
ba9d5c4d54
Notes:
sideshowbarker
2024-07-18 11:26:14 +09:00
Author: https://github.com/awesomekling
Commit: ba9d5c4d54
114 changed files with 263 additions and 262 deletions
|
@ -39,11 +39,11 @@ public:
|
|||
void alert(const String&);
|
||||
bool confirm(const String&);
|
||||
String prompt(const String&, const String&);
|
||||
i32 request_animation_frame(JS::Function&);
|
||||
i32 request_animation_frame(JS::FunctionObject&);
|
||||
void cancel_animation_frame(i32);
|
||||
|
||||
i32 set_timeout(JS::Function&, i32);
|
||||
i32 set_interval(JS::Function&, i32);
|
||||
i32 set_timeout(JS::FunctionObject&, i32);
|
||||
i32 set_interval(JS::FunctionObject&, i32);
|
||||
void clear_timeout(i32);
|
||||
void clear_interval(i32);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue