Comment out precedence

This commit is contained in:
kwullaer 2017-01-25 11:21:42 +01:00
parent d609b69eb4
commit 572067071e
1 changed files with 4 additions and 4 deletions

View File

@ -51,12 +51,12 @@ namespace pds {
lexColon(lex, token, false);
readingGrammar = true;
break;
/**/
/*
case ParsodusLexer::PRECEDENCES:
lexColon(lex, token, false);
readingPrecedences = true;
break;
/**/
*/
case ParsodusLexer::TERMINAL:
if(readingTerminals) {
config.grammar.terminals.insert(token.content.substr(1, token.content.size - 1));
@ -107,7 +107,7 @@ namespace pds {
} else
throw InputParserException("Found a variable outside a grammar section: " + token.content);
break;
/**/
/*
case ParsodusLexer::PRECEDENCE:
if (readingPrecedences) {
@ -138,7 +138,7 @@ namespace pds {
} else
throw InputParserException("Found a precedence rule outside a precedence section: " + token.content);
/**/
*/
default:
break;