-
Currently the editor only shows the classes/objects declared on the current open file (in the editor).
I would like it also to show those classes/objects internally referenced by the code.
For example…
-
Now it is possible to add an inner class (in same file: test or wlk)
I think it would be nice to offer two options:
- add inner class: current behavior
- add new class : it would open "New Objects an…
-
If you try to compare a ref that is currently null against another ref using the identity message `===` then it breaks
See screenshot
![image](https://user-images.githubusercontent.com/4428120/2…
-
Suppose we have the following class defined in a Wollok source file.
class Certificacion {
var puntos
var sobreProducto = false
constructor(_p,_bool) {
puntos = _p
sobreProducto = _bool…
-
Returning null is not inherently bad, but leads student into null checking, which is a practice we should avoid.
I propose to simply fail on this scenario, or add a variant with an extra continuatio…
-
I compiled code with this command;
`node ./Makefile.dryice.js -m -nc`
Everythings perfect but php files wont work with ace editor.
I'm getting always this error on apache server;
`
Failed t…
-
After solving a TP, I found myself needing a builder. I decided to explain it
https://github.com/fdodino/scripts-clase/blob/master/PDP/objetos/Clases-constructores-builders-herencia-clase5.md
but I …
-
If you evaluate
```program p {
console.println(4 * 3 ** 2)
}
```
you will get 144 (=12^2) instead of 36(=4*9) as it should.
-
in REPL
> var lista = [1,2,3,4]
> lista.forEach{e=>lista.remove(e)}
> wollok.lang.Exception
> at wollok.lang.List.fold(initialValue,closure) [classpath:/wollok/lang.wlk]
> at wollok.lang.Coll…
-
Example:
```
mixin M1{
method uno(){
return 1
}
}
class C1 mixed with M1{
method dos() = 1 + self.uno()
}
```
It marks `method dos() = 1 + self.uno()` with "Non existant metho…