-
• #2
Please post all of your code.
Where are you seeing the error message?
The message appears to be coming from chrome - not from espruino
-
• #3
It's possible the error you're hitting is because you've turned minification on and are using some ES6 features like arrow functions?
But as @Wilberforce says we'd need the full code - or at the very least some code that shows the error. Those two lines by themselves seem fine.
-
• #5
Oh, I guess it might mean line 2 of the module. I didn't think of that...
-
• #6
Ahh, that's a point! Neither did I :) I guess
Lights
is your own custom module? -
• #7
Yeah. The module defines a
class
. Is that the problem? I thought support for classes was added a couple of versions ago?Ahh. "Module minification" was switched to "Esprima". I've changed it to "No minification" and it works now.
It would have been nice if the error message included a bit more information. eg Saying that it was line 2 of the module file. Is that possible?
Thanks.
-
• #8
The module defines a class. Is that the problem?
It shouldn't be at all - unfortunately the minifier its showing its age now. It might be time to ditch Esprima completely and move to the closure compiler (there's an open PR on GitHub that adds an offline version of closure - it's just quite a bit of code to include!).
It would have been nice if the error message included a bit more information
Just done - next IDE update should have it in :)
-
• #9
Thanks! :)
Hi. My code was working, but I've just upgraded to v1.99 on my Espruino WiFi, and now I'm getting the above error.
My code starts like this:
It definitely seems to be something to do with that second line, as I can load in other modules, but if I move the lines of code around the error message still stays
Error: Line 2
.Of course, I can rename my module if I need to. Seems like something weird is happening though. Any idea what?
Thanks.