mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Fix value generator decompilation to rewrite JSOP_FORLOCAL as JSOP_GETLOCAL (352392, r=mrbkap)
This commit is contained in:
parent
dd1b9cf5e9
commit
bd2d41a6ba
@ -1154,6 +1154,8 @@ Decompile(SprintStack *ss, jsbytecode *pc, intN nb)
|
||||
? JSOP_GETARG
|
||||
: (type == JOF_QVAR)
|
||||
? JSOP_GETVAR
|
||||
: (type == JOF_LOCAL)
|
||||
? JSOP_GETLOCAL
|
||||
: JSOP_NAME;
|
||||
} else {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user