mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 21:10:30 +00:00
LibJS: Remove unused js_symbol(Interpreter&, ...)
This commit is contained in:
parent
aaa8b48a4c
commit
30ca9acd9c
Notes:
sideshowbarker
2024-07-19 02:10:27 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/30ca9acd9cc
2 changed files with 0 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -51,7 +51,6 @@ private:
|
|||
};
|
||||
|
||||
Symbol* js_symbol(Heap&, String description, bool is_global);
|
||||
Symbol* js_symbol(Interpreter&, String description, bool is_global);
|
||||
Symbol* js_symbol(VM&, String description, bool is_global);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue