summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Interpreter.h
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2020-05-04 12:34:49 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-05 09:15:16 +0200
commit73bead5ae91606a36a426416866e0b151efcb32e (patch)
tree4460dd3240211d12ec9cf4bbc7cc5eadcabc68e8 /Libraries/LibJS/Interpreter.h
parent046f9cf115a7186a381bd8e1d082e08a5e1edc4e (diff)
downloadserenity-73bead5ae91606a36a426416866e0b151efcb32e.zip
LibJS: Move join_args() in Interpreter
It can be useful outside of Runtime/ConsoleObject.cpp. join_args() => Interpreter::join_arguments()
Diffstat (limited to 'Libraries/LibJS/Interpreter.h')
-rw-r--r--Libraries/LibJS/Interpreter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibJS/Interpreter.h b/Libraries/LibJS/Interpreter.h
index da41b49afb..426aa78fb5 100644
--- a/Libraries/LibJS/Interpreter.h
+++ b/Libraries/LibJS/Interpreter.h
@@ -166,6 +166,8 @@ public:
Console& console() { return m_console; }
+ String join_arguments();
+
private:
Interpreter();