LibJS: Remove js_bigint(Interpreter&, ...)

This commit is contained in:
Andreas Kling 2020-09-27 20:00:38 +02:00
commit adf0a537af
Notes: sideshowbarker 2024-07-19 02:10:13 +09:00
3 changed files with 3 additions and 9 deletions

View file

@ -45,9 +45,4 @@ BigInt* js_bigint(Heap& heap, Crypto::SignedBigInteger big_integer)
return heap.allocate_without_global_object<BigInt>(move(big_integer));
}
BigInt* js_bigint(Interpreter& interpreter, Crypto::SignedBigInteger big_integer)
{
return js_bigint(interpreter.heap(), move(big_integer));
}
}