Community
Participate
Working Groups
Grammar ======= Model: elements+=Element; Element: 'element' attr += Attribute attr += Attribute? (attr += Attribute attr += Attribute)*; Attribute: value = Datatype; Datatype hidden(WS, INT): ID ('.' ID)*; Parser fails with valid input: ============================== element 7 a 8 . b
see also bug 317840
Created attachment 264283 [details] Sample Project Runtime and test project. The following test shows no errors: @Test def void loadModel() { val result = parseHelper.parse(''' element 7 a 8 . b ''') Assert.assertNotNull(result) assertNoErrors(result) }