Closed
Bug 826647
Opened 13 years ago
Closed 13 years ago
BaselineCompiler: Compile constructors
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Assigned: jandem)
References
Details
Attachments
(1 file)
7.25 KB,
patch
|
djvj
:
review+
|
Details | Diff | Splinter Review |
Just like Ion, when entering from the interpreter and are constructing, we have to create the object.
Attachment #697858 -
Flags: review?(kvijayan)
Comment 1•13 years ago
|
||
Comment on attachment 697858 [details] [diff] [review]
Patch
Review of attachment 697858 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/ion/shared/IonFrames-x86-shared.h
@@ +79,5 @@
> }
>
> + Value thisv() {
> + return argv()[0];
> + }
This should be added to IonFrames-arm.h as well.
Attachment #697858 -
Flags: review?(kvijayan) → review+
Assignee | ||
Comment 2•13 years ago
|
||
https://hg.mozilla.org/projects/ionmonkey/rev/618c1544ac42
(In reply to Kannan Vijayan [:djvj] from comment #1)
> This should be added to IonFrames-arm.h as well.
Oops, good catch.
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•