mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02: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:
committed by
Andreas Kling
parent
95ba74d934
commit
35275651e3
Notes:
github-actions[bot]
2025-04-29 00:10:51 +00:00
Author: https://github.com/awesomekling Commit: https://github.com/LadybirdBrowser/ladybird/commit/35275651e3c Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4513
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user