Closed 09jlardinois closed 6 years ago
Hi,
I have not been into LÖVE lately (never tried version 11 in fact), so I can't say much to that. But what I can say for certain is that the EE we provide here has nothing to do with errors thrown by DLTK. The EE is only documenting and structuring the API for eclipse so it can assist you with hints and stuff. From the looks of it I would say that that you should bring this to the attention of the DLTK guys. Or is this a runtime error? Then you would probably be better off with someone at the love2d project, as they wrote the interpreter. Sorry, I can't be of any help.
Greetings, Jules
'=' expected near 'continue' DLTK Problem, says Eclipse LDT + Love2D 11.1
Here's the code:
I thought maybe this was an error here because erasing the goto and ::continue:: stuff makes the error go away, but I can't see how adding them back (proper syntax) causes this.
It seems like Eclipse thinks that goto is a variable, and doesn't recognize it as a keyword. It thinks it should be goto = continue. Because when I write it like that, the error changes.
When I do
goto = continue
then it tells me that ::continue:: has a nil name (from detaching it from goto, I don't know the term).So I think it's not properly recognizing goto for what it is. It's missing from the interpreter.