LibJS: Remove unused js_symbol(Interpreter&, ...)

This commit is contained in:
Andreas Kling
2020-09-27 19:46:29 +02:00
parent aaa8b48a4c
commit 30ca9acd9c
2 changed files with 0 additions and 6 deletions

View File

@@ -50,9 +50,4 @@ Symbol* js_symbol(VM& vm, String description, bool is_global)
return js_symbol(vm.heap(), move(description), is_global);
}
Symbol* js_symbol(Interpreter& interpreter, String description, bool is_global)
{
return js_symbol(interpreter.heap(), description, is_global);
}
}