diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2020-05-04 12:34:49 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-05 09:15:16 +0200 |
commit | 73bead5ae91606a36a426416866e0b151efcb32e (patch) | |
tree | 4460dd3240211d12ec9cf4bbc7cc5eadcabc68e8 /Libraries/LibJS/Interpreter.h | |
parent | 046f9cf115a7186a381bd8e1d082e08a5e1edc4e (diff) | |
download | serenity-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.h | 2 |
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(); |