LibJS: Move join_args() in Interpreter

It can be useful outside of Runtime/ConsoleObject.cpp.
join_args() => Interpreter::join_arguments()
This commit is contained in:
Emanuele Torre 2020-05-04 12:34:49 +02:00 committed by Andreas Kling
commit 73bead5ae9
Notes: sideshowbarker 2024-07-19 06:59:02 +09:00
3 changed files with 20 additions and 17 deletions

View file

@ -166,6 +166,8 @@ public:
Console& console() { return m_console; }
String join_arguments();
private:
Interpreter();