Bug 255698 - Tail recursion hangs on strict mode
Summary: Tail recursion hangs on strict mode
Status: CLOSED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-04-19 17:41 PDT by Yijia Huang
Modified: 2023-04-19 19:50 PDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Yijia Huang 2023-04-19 17:41:58 PDT
"use strict";

function foo() {
    return foo();
}
foo();