LibJS: Add js_string(Interpreter&, String)

This commit is contained in:
Andreas Kling 2020-04-04 12:57:37 +02:00
commit faac43597a
Notes: sideshowbarker 2024-07-19 07:56:37 +09:00
11 changed files with 33 additions and 26 deletions

View file

@ -45,5 +45,6 @@ private:
};
PrimitiveString* js_string(Heap&, String);
PrimitiveString* js_string(Interpreter&, String);
}