Fix '(void 0) is undefined' decompilation regression (420919, r=igor, a=dsicore).

This commit is contained in:
2008-04-24 16:48:32 -07:00
parent f4898b94ee
commit dcb524ff17
3 changed files with 11 additions and 5 deletions

View File

@@ -98,7 +98,7 @@ typedef enum JSOpLength {
#define JOF_PROP (2U<<5) /* obj.prop operation */
#define JOF_ELEM (3U<<5) /* obj[index] operation */
#define JOF_XMLNAME (4U<<5) /* XML name: *, a::b, @a, @a::b, etc. */
#define JOF_VARPROP (5U<<5) /* x.prop for arg, var, or local x */
#define JOF_VARPROP (5U<<5) /* x.prop for this, arg, var, or local x */
#define JOF_MODEMASK (7U<<5) /* mask for above addressing modes */
#define JOF_SET (1U<<8) /* set (i.e., assignment) operation */
#define JOF_DEL (1U<<9) /* delete operation */