reporting missing ; on next line
log(“car”)
log(“boat”);Eclipse reporting missing ; on the boat line and not the car line.
Submitted by Terje Pedersen on 15 April 2011 at 11:32
Issue Log
On 15 April 2011 at 12:38 Zef Hemel commented:
Mobl’s syntax is not layout aware, i.e. newline, spaces, tabs don’t have meaning. Consequently, mobl doesn’t know you forgot a semicolon, until you do something else (like call
log("boat")
). Hence:log("car") ; log("boat") ;
Is perfectly find mobl code, where you put your semicolons is just a matter of style :-)
On 19 April 2011 at 09:12 Zef Hemel closed this issue.
Log in to post comments