Eliminate DQUOT_START/SQUOT_START tokens
[yangtools.git] / yang / yang-parser-antlr / src / main / antlr4 / org / opendaylight / yangtools / yang / parser / antlr / YangStatementParser.g4
index 8becc9717394895d4e60008c22f0631f94c4dc1e..69148f618cd5e00c870ce4273ed9074a90d4b3ef 100644 (file)
@@ -34,8 +34,8 @@ argument :
     // here to eliminate the need for another parser construct. Quoted strings
     // account for about 50% of all arguments encountered -- hence the added
     // parse tree indirection is very visible.
-    (DQUOT_START DQUOT_STRING? DQUOT_END | SQUOT_START SQUOT_STRING? SQUOT_END)
-    (SEP* PLUS SEP* (DQUOT_START DQUOT_STRING? DQUOT_END | SQUOT_START SQUOT_STRING? SQUOT_END))*
+    (DQUOT_STRING? DQUOT_END | SQUOT_STRING? SQUOT_END)
+    (SEP* PLUS SEP* (DQUOT_STRING? DQUOT_END | SQUOT_STRING? SQUOT_END))*
     |
     unquotedString
     ;