1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 01:42:43 +03:00

Fix break

This commit is contained in:
Timothy Clem 2017-08-24 14:56:52 -07:00
parent 6db2c2774c
commit 2905201e19
3 changed files with 17 additions and 6 deletions

View File

@ -1,6 +1,8 @@
{-(Program
(Program
(While
(Identifier)
{ (Identifier)
->(Not
(Identifier)) }
(
(Break
(Empty)))))-}
(Empty)))))

View File

@ -1,6 +1,8 @@
{+(Program
(Program
(While
(Identifier)
{ (Not
(Identifier))
->(Identifier) }
(
(Break
(Empty)))))+}
(Empty)))))

View File

@ -0,0 +1,7 @@
(Program
(While
(Not
(Identifier))
(
(Break
(Empty)))))