Monkey parser small issue

Monkey Forums/Monkey Bug Reports/Monkey parser small issue

ziggy(Posted 2012) [#1]
The semicolon, when used to split to declarations inside a class, produces an unexpected compilation error.

[monkeycode]Class TestClass
Field a:Int; Field b:Int = 34
End[/monkeycode]
It affects also if it's placed after a Public or Private modifier, etc.

[monkeycode]Class TestClass
Field a:Int
Field b:Int = 34
Public; Method Draw(x:Int, y:Int)
End

End[/monkeycode]