Change catch clauses to use lexical scope, etc. (336379, r=mrbkap).

This commit is contained in:
brendan@mozilla.org
2006-08-16 05:01:14 +00:00
parent b6b00d5305
commit 90a623216c
10 changed files with 286 additions and 284 deletions

View File

@@ -60,6 +60,14 @@ typedef enum JSOp {
JSOP_LIMIT
} JSOp;
typedef enum JSOpLength {
#define OPDEF(op,val,name,token,length,nuses,ndefs,prec,format) \
op##_LENGTH = length,
#include "jsopcode.tbl"
#undef OPDEF
JSOP_LIMIT_LENGTH
} JSOpLength;
/*
* JS bytecode formats.
*/