summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Console.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Console.h')
-rw-r--r--Userland/Libraries/LibJS/Console.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Console.h b/Userland/Libraries/LibJS/Console.h
index 34f45a71b5..6394c14e50 100644
--- a/Userland/Libraries/LibJS/Console.h
+++ b/Userland/Libraries/LibJS/Console.h
@@ -116,6 +116,8 @@ public:
virtual void clear() = 0;
virtual void end_group() = 0;
+ ThrowCompletionOr<String> generically_format_values(MarkedVector<Value> const&);
+
protected:
virtual ~ConsoleClient() = default;