mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
LibJS: Skip stack overflow check in ESFO::prepare_for_ordinary_call()
We already do a stack overflow check when entering run_bytecode(), which is the first thing that happens when we actually invoke the ESFO executable.
This commit is contained in:
parent
95ba74d934
commit
35275651e3
Notes:
github-actions[bot]
2025-04-29 00:10:51 +00:00
Author: https://github.com/awesomekling
Commit: 35275651e3
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4513
2 changed files with 8 additions and 8 deletions
|
@ -198,7 +198,7 @@ private:
|
|||
virtual bool is_ecmascript_function_object() const override { return true; }
|
||||
virtual void visit_edges(Visitor&) override;
|
||||
|
||||
ThrowCompletionOr<void> prepare_for_ordinary_call(VM&, ExecutionContext& callee_context, Object* new_target);
|
||||
void prepare_for_ordinary_call(VM&, ExecutionContext& callee_context, Object* new_target);
|
||||
void ordinary_call_bind_this(VM&, ExecutionContext&, Value this_argument);
|
||||
|
||||
NonnullRefPtr<SharedFunctionInstanceData> m_shared_data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue