1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 06:41:45 +03:00

Add compoundStatement to statement

This commit is contained in:
joshvera 2017-12-27 14:52:25 -05:00
parent df973897fa
commit 83457d571c

View File

@ -108,7 +108,7 @@ statement :: Assignment
statement = handleError everything
where
everything = choice [
-- compoundStatement
compoundStatement
-- , namedLabelStatement
-- , expressionStatement
-- , selectionStatement
@ -123,7 +123,7 @@ statement = handleError everything
-- , traitDeclaration
-- , namespaceDefinition
-- , namespaceUseDeclaration
globalDeclaration
, globalDeclaration
, functionStaticDeclaration
]