Closed
Bug 1805645
Opened 3 years ago
Closed 3 years ago
Add irregexp::CheckPatternSyntax with LifoAlloc instead of JSContext
Categories
(Core :: JavaScript Engine, task, P1)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
110 Branch
| Tracking | Status | |
|---|---|---|
| firefox110 | --- | fixed |
People
(Reporter: arai, Assigned: arai)
References
Details
Attachments
(1 file)
irregexp::CheckPatternSyntax used by frontend receives JSContext to get LifoAlloc.
static bool CheckPatternSyntaxImpl(JSContext* cx,
...
LifoAllocScope allocScope(&cx->tempLifoAlloc());
Directly receiving LifoAlloc allows removing JSContext from Parser.
| Assignee | ||
Comment 1•3 years ago
|
||
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/0c0a7b6b9f4b
Use LifoAlloc instead of JSContext as parameter type of irregexp::CheckPatternSyntax. r=iain
Comment 3•3 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox110:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 110 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•