Hello, I recently upgraded my project's dependencies and noticed this error when trying to compile *.esl files.
eslisp-camelify is checkout from the official Git repo.
It seems like something has changed, and this is no longer bound to the eslisp object, so that this.multi() fails because this is null?
git clean -fxd
npm install
make clean
make
make test
node test.js
TAP version 13
# var
/home/rko/src/eslisp-camelify/node_modules/eslisp/lib/compile.js:189
throw e;
^
TypeError: Error evaluating macro `camelify` (called at line 1, column 40): Cannot read property 'apply' of undefined
at env.module.exports (/home/rko/src/eslisp-camelify/index.js:35:22)
at /home/rko/src/eslisp-camelify/node_modules/eslisp/lib/compile.js:184:35
at listToEstree (/home/rko/src/eslisp-camelify/node_modules/eslisp/lib/compile.js:191:6)
at astToEstree (/home/rko/src/eslisp-camelify/node_modules/eslisp/lib/compile.js:250:25)
at /home/rko/src/eslisp-camelify/node_modules/eslisp/lib/translate.js:36:14
at /home/rko/src/eslisp-camelify/node_modules/prelude-ls/lib/List.js:158:21
at /home/rko/src/eslisp-camelify/node_modules/prelude-ls/lib/List.js:161:4
at /home/rko/src/eslisp-camelify/node_modules/prelude-ls/lib/List.js:665:42
at module.exports (/home/rko/src/eslisp-camelify/node_modules/eslisp/lib/translate.js:37:7)
at toEstree (/home/rko/src/eslisp-camelify/node_modules/eslisp/lib/index.js:9:10)
make: *** [makefile:12: test] Error 1
Hello, I recently upgraded my project's dependencies and noticed this error when trying to compile
*.eslfiles.eslisp-camelifyis checkout from the official Git repo.It seems like something has changed, and
thisis no longer bound to the eslisp object, so thatthis.multi()fails becausethisis null?