We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec641f commit d067eccCopy full SHA for d067ecc
lib/JavaScript/Duktape.pm
@@ -101,13 +101,13 @@ use constant {
101
DUK_ENUM_SORT_ARRAY_INDICES => (1 << 4),
102
DUK_ENUM_NO_PROXY_BEHAVIOR => (1 << 5),
103
104
- DUK_COMPILE_EVAL => (1 << 0),
105
- DUK_COMPILE_FUNCTION => (1 << 1),
106
- DUK_COMPILE_STRICT => (1 << 2),
107
- DUK_COMPILE_SAFE => (1 << 3),
108
- DUK_COMPILE_NORESULT => (1 << 4),
109
- DUK_COMPILE_NOSOURCE => (1 << 5),
110
- DUK_COMPILE_STRLEN => (1 << 6),
+ DUK_COMPILE_EVAL => (1 << 3),
+ DUK_COMPILE_FUNCTION => (1 << 4),
+ DUK_COMPILE_STRICT => (1 << 5),
+ DUK_COMPILE_SAFE => (1 << 6),
+ DUK_COMPILE_NORESULT => (1 << 7),
+ DUK_COMPILE_NOSOURCE => (1 << 8),
+ DUK_COMPILE_STRLEN => (1 << 9),
111
112
#Flags for duk_def_prop() and its variants
113
DUK_DEFPROP_WRITABLE => (1 << 0),
0 commit comments