1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

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
parent 046f9cf115
commit 73bead5ae9
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();