jupyter-xeus / xeus-javascript

A JavaScript kernel for JupyterLite, powered by Xeus
https://jupyter-xeus.github.io/xeus-javascript/lab/index.html?path=xeus-javascript.ipynb
BSD 3-Clause "New" or "Revised" License
10 stars 5 forks source link

"UnkwownError" happened for a line of "var" #23

Closed MRYingLEE closed 8 months ago

MRYingLEE commented 9 months ago
var _Comm_id, _Comm_protocol_version_minor;

met "UnkwownError: ": image

But, if I split the statement into 2 lines:

var _Comm_id;
var _Comm_protocol_version_minor;

there is no error.

If I split the cell into 2, no error also.

Most likely it is a bug. Please check.

DerThorsten commented 8 months ago

fixed once #25 lands