Mike Gerdts
Mike Gerdts
**Please acknowledge the following before creating a ticket** - [x] I have read the GitHub issues section of [REPORTING-BUGS](../blob/master/REPORTING-BUGS). **Description of the bug:** fio from fio-3.29-154-g06bb-x64.msi does not run on...
There are times when symbols change over time. For instance: ``` /* * V8_SCOPEINFO_IDX_FIRST_VARS' value was 4 in V8 3.7 and up, * then 5 when StrongModeFreeVariableCount was added with...
mdb_v8.c has: ``` typedef struct v8_offset { ssize_t *v8o_valp; const char *v8o_class; const char *v8o_member; boolean_t v8o_optional; uint32_t v8o_flags; intptr_t v8o_fallback; } v8_offset_t; ``` `v8o_flags` has: ``` #define V8_CONSTANT_OPTIONAL 1...
The previous change updated the version in package-lock.json, but not package.json. This updates package.json for a new release and gets the version package-lock.json in sync.
With this file: ``` #! /usr/bin/env node function foo() { return ['a', 'b'] } [v1, v2] = foo(); console.log([v1, v2]) ``` jsl fails miserably ``` $ PYTHONPATH=.:build ./javascriptlint/jsl fail JavaScript...