mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-02 06:09:51 +00:00
LibJS: Sort Console methods in spec order
Easier to compare to the spec side-by-side when everything is in the same order.
This commit is contained in:
parent
caa24d0805
commit
9f8e5f0b1c
Notes:
sideshowbarker
2024-07-17 00:57:24 +09:00
Author: https://github.com/trflynn89
Commit: 9f8e5f0b1c
Pull-request: https://github.com/SerenityOS/serenity/pull/19553
4 changed files with 116 additions and 116 deletions
|
@ -22,16 +22,16 @@ public:
|
|||
private:
|
||||
explicit ConsoleObject(Realm&);
|
||||
|
||||
JS_DECLARE_NATIVE_FUNCTION(log);
|
||||
JS_DECLARE_NATIVE_FUNCTION(assert_);
|
||||
JS_DECLARE_NATIVE_FUNCTION(clear);
|
||||
JS_DECLARE_NATIVE_FUNCTION(debug);
|
||||
JS_DECLARE_NATIVE_FUNCTION(info);
|
||||
JS_DECLARE_NATIVE_FUNCTION(warn);
|
||||
JS_DECLARE_NATIVE_FUNCTION(error);
|
||||
JS_DECLARE_NATIVE_FUNCTION(info);
|
||||
JS_DECLARE_NATIVE_FUNCTION(log);
|
||||
JS_DECLARE_NATIVE_FUNCTION(trace);
|
||||
JS_DECLARE_NATIVE_FUNCTION(warn);
|
||||
JS_DECLARE_NATIVE_FUNCTION(count);
|
||||
JS_DECLARE_NATIVE_FUNCTION(count_reset);
|
||||
JS_DECLARE_NATIVE_FUNCTION(clear);
|
||||
JS_DECLARE_NATIVE_FUNCTION(assert_);
|
||||
JS_DECLARE_NATIVE_FUNCTION(group);
|
||||
JS_DECLARE_NATIVE_FUNCTION(group_collapsed);
|
||||
JS_DECLARE_NATIVE_FUNCTION(group_end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue