mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:07:44 +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
4 changed files with 116 additions and 116 deletions
|
@ -65,16 +65,16 @@ public:
|
|||
HashMap<String, unsigned>& counters() { return m_counters; }
|
||||
HashMap<String, unsigned> const& counters() const { return m_counters; }
|
||||
|
||||
ThrowCompletionOr<Value> assert_();
|
||||
Value clear();
|
||||
ThrowCompletionOr<Value> debug();
|
||||
ThrowCompletionOr<Value> error();
|
||||
ThrowCompletionOr<Value> info();
|
||||
ThrowCompletionOr<Value> log();
|
||||
ThrowCompletionOr<Value> warn();
|
||||
Value clear();
|
||||
ThrowCompletionOr<Value> trace();
|
||||
ThrowCompletionOr<Value> warn();
|
||||
ThrowCompletionOr<Value> count();
|
||||
ThrowCompletionOr<Value> count_reset();
|
||||
ThrowCompletionOr<Value> assert_();
|
||||
ThrowCompletionOr<Value> group();
|
||||
ThrowCompletionOr<Value> group_collapsed();
|
||||
ThrowCompletionOr<Value> group_end();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue