Closed
Bug 1943434
Opened 22 days ago
Closed 17 days ago
Eliminate usage of non-syntactic try-finally in handling explicit resource management
Categories
(Core :: JavaScript Engine, task, P3)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
136 Branch
Tracking | Status | |
---|---|---|
firefox136 | --- | fixed |
People
(Reporter: debadree333, Assigned: debadree333)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
This causes issues in code like
function fn() {
using a = { [Symbol.dispose]: () => { throw 1; } };
try {
return;
} catch {}
}
Assignee | ||
Updated•20 days ago
|
Severity: -- → N/A
Priority: -- → P3
Assignee | ||
Comment 1•20 days ago
|
||
Updated•20 days ago
|
Assignee: nobody → debadree333
Status: NEW → ASSIGNED
Updated•19 days ago
|
Attachment #9461744 -
Attachment description: Bug 1943434: Eliminate usage of non-syntactic try-finally in handling explicit resource management. r?arai! → (WIP) Bug 1943434: Eliminate usage of non-syntactic try-finally in handling explicit resource management. r?arai!
Updated•19 days ago
|
Attachment #9461744 -
Attachment description: (WIP) Bug 1943434: Eliminate usage of non-syntactic try-finally in handling explicit resource management. r?arai! → Bug 1943434: Eliminate usage of non-syntactic try-finally in handling explicit resource management. r?arai!
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/7babac04bcbf
Eliminate usage of non-syntactic try-finally in handling explicit resource management. r=arai
Comment 3•17 days ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 17 days ago
status-firefox136:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 136 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•