-
For example in the following program, current formatter brings both println's in the same line.
object foo {
method bar() {
console.println("")
console.println("")
}
}
-
See this example.
A file like
```xtend
class Numerote {
method sosPar() {
return true
}
}
```
And another file
```xtend
import objects.Numerote
/** First Wollok example */
…
-
See this example
a file with this definition
```xtend
import objects.Numerote
/** First Wollok example */
object wollok {
var felicidad = 10
method howAreYou() {
return 1 / 0
}
m…
-
I created a project with the following structure:
src
/model
/test
In test folder there are some .wtest files and in model folder there's a .wlk file named musicos and the aim is to be a…
-
Tengo algo así para el fixture:
```
const enfermo
const unDoctorCualquiera
fixture {
...
unDoctorCualquiera = new Doctor()
}
```
Y tengo un test así:
```
test "si un doctor cu…
-
We must see how to customise this xtext messages
-
I think we should avoid using console.log() in our examples as much as possible, so I would like to change the example.
-
We are currently using the default "universal" welcome page.
It would be cool to customize in the following way:
- A "Wollok" header
- Wollok colors (theme)
- Link to wollok "homepage"
- Link to "Lang…
-
![image](https://user-images.githubusercontent.com/4633913/30032874-8a38950a-916e-11e7-8ca5-dace38025e2f.png)
-
Al correr tests, aparece warning
Warning: NLS unused message: WollokDslValidator_NO_DEFAULT_CONSTRUCTOR_IN_SUPER_TYPE in: org.uqbar.project.wollok.messages
@Juancete ¿es sobre lo que estuviste t…