mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-28 02:08:51 +09:00
Issue #2308 & #1240 Follow-up - Introduce new increment and decrement operations. https://bugzilla.mozilla.org/show_bug.cgi?id=1508521
This commit is contained in:
parent
e9202b0b0f
commit
5c8a6c5bb8
13 changed files with 157 additions and 30 deletions
|
|
@ -1939,6 +1939,18 @@ BaselineCompiler::emit_JSOP_NEG()
|
|||
return emitUnaryArith();
|
||||
}
|
||||
|
||||
bool
|
||||
BaselineCompiler::emit_JSOP_INC()
|
||||
{
|
||||
return emitUnaryArith();
|
||||
}
|
||||
|
||||
bool
|
||||
BaselineCompiler::emit_JSOP_DEC()
|
||||
{
|
||||
return emitUnaryArith();
|
||||
}
|
||||
|
||||
bool
|
||||
BaselineCompiler::emit_JSOP_LT()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue