mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
LibJS: Rename Function => FunctionObject
This commit is contained in:
parent
e389ae3c97
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