nickva commented on PR #5311:
URL: https://github.com/apache/couchdb/pull/5311#issuecomment-2420668218
This is basically just undefined variables:
```
% qjs
QuickJS - Type "\h" for help
qjs > x = y;
ReferenceError: 'y' is not defined
at <eval> (<evalScript>)
qjs >
```
```
% js
js> x = y;
typein:1: ReferenceError: y is not defined
```
```
% js91
js> x = y;
typein:1:1 ReferenceError: y is not defined
Stack:
@typein:1:1
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]