mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
Issue #1894 - Follow-up: Fix return value ordering in IonMonkey nullish coalescing
This commit is contained in:
parent
e31a058ce9
commit
aece6260fb
1 changed files with 1 additions and 1 deletions
|
|
@ -4443,7 +4443,7 @@ IonBuilder::jsop_logical(JSOp op)
|
|||
MIsNullOrUndefined* isNullOrUndefined =
|
||||
MIsNullOrUndefined::New(alloc(), lhs);
|
||||
current->add(isNullOrUndefined);
|
||||
test = newTest(isNullOrUndefined, evalLhs, evalRhs);
|
||||
test = newTest(isNullOrUndefined, evalRhs, evalLhs);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue