Javier Fernandes

Results 13 comments of Javier Fernandes

Seems like the button just does that (not sure, I'm just a new user :P) But you need to access it from the inspect window, there should be a "Reselect"...

Yes, it could be. I didn't think about it much. Just arosed while documenting. With object you mean a regular anonymous object and not a predefined wko right? I thought...

Yeah, just that we don't want it to be accesible from anywhere. Actually WKO's are just the same as objectliterals just that they are added to the global scope. So...

But program have a name. So we could treat them as WKOs in terms of cross-references. So maybe the grammar will also change. Example ``` program pepitaFlights { } ```...

This will also solve the program with "weird" stack trace element for programs ``` java wollok.lang.MessageNotUnderstoodException: a AsustadorNato[nivelMotivacion=100, edad=25, puntosTerrorInnatos=200] does not understand cantina() at wollok.lang.Object.messageNotUnderstood(name,parameters) [/wollok.wlk:151] at wollok.example.monstersinc.Monster.scare(boy) [/wollok.wlk:151]...

Yes. Just that in that case that part of the stack trace will be inconsistent with other stack that are all method callls. That would make difficult implementing stack hypeelinks...

Yes. There are basically two aspects of this. One is a bug. Seems like the scope is not correctly delimited for cross-references (well not actually cross files, but ..). A...

Yo siempre tuve en el tintero implementar string interpolartion. Todo lenguaje "moderno" las tiene y suelen ser bastante mas practicas que concatenar. No soluciona el problema, pero reduce usos Creo...

There is probably a first bug (NPE) while trying to show an error. Then the error itself. I guess that it is that it tried to execute an abstract method....

This is the most annoying type of error on "non-statically typed+checked" languages. I wonder if our idea delaying as much as possible types is even right. In this particular case...