Bug 2366 - new parser API - implementation of declared statements
[yangtools.git] / yang / yang-parser-impl / src / main / antlr / YangStatementParser.g4
index 3ac195dfbe89d82bb01ddd0d15c18a3ef52615a8..5d975ad69c8b9816c66dd8f48b6a70d8d6e3134e 100644 (file)
@@ -18,4 +18,4 @@ options{
 statement : SEP? keyword SEP? (argument)? SEP? (SEMICOLON | LEFT_BRACE SEP? (statement)* SEP? RIGHT_BRACE SEP?) SEP?;
 keyword : (IDENTIFIER COLON)? IDENTIFIER;
 
-argument : STRING | IDENTIFIER | STRING (SEP? PLUS SEP? STRING)*;
\ No newline at end of file
+argument : STRING (SEP? PLUS SEP? STRING)* | IDENTIFIER;
\ No newline at end of file