diff options
author | Alex Auvolat <alex.auvolat@ansys.com> | 2014-06-11 17:26:51 +0200 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ansys.com> | 2014-06-11 17:26:51 +0200 |
commit | aefe04b278d37c5f1248ef631eeb08dbbb4da653 (patch) | |
tree | 16a6096ce3dadce89a1f8b7e5a70e9d912a973c8 /frontend/parser.conflicts | |
parent | 36f98d819756ada119e696729e40d8e8e427b5f0 (diff) | |
download | scade-analyzer-aefe04b278d37c5f1248ef631eeb08dbbb4da653.tar.gz scade-analyzer-aefe04b278d37c5f1248ef631eeb08dbbb4da653.zip |
Make code cleaner
Diffstat (limited to 'frontend/parser.conflicts')
-rw-r--r-- | frontend/parser.conflicts | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/frontend/parser.conflicts b/frontend/parser.conflicts deleted file mode 100644 index 296156a..0000000 --- a/frontend/parser.conflicts +++ /dev/null @@ -1,32 +0,0 @@ - -** Conflict (shift/reduce) in state 17. -** Token involved: IDENT -** This state is reached from file after reading: - -NODE IDENT LPAREN vars RPAREN RETURNS vars RPAREN VAR var SEMICOLON - -** The derivations that appear below have the following common factor: -** (The question mark symbol (?) represents the spot where the derivations begin to differ.) - -file -list(toplevel) EOF -toplevel list(toplevel) -node_decl -(?) - -** In state 17, looking ahead at IDENT, reducing production -** nonempty_list(terminated(var,SEMICOLON)) -> var SEMICOLON -** is permitted because of the following sub-derivation: - -NODE IDENT LPAREN vars RPAREN RETURNS vars RPAREN var_decl dbody // lookahead token appears because dbody can begin with IDENT - VAR nonempty_list(terminated(var,SEMICOLON)) // lookahead token is inherited - var SEMICOLON . - -** In state 17, looking ahead at IDENT, shifting is permitted -** because of the following sub-derivation: - -NODE IDENT LPAREN vars RPAREN RETURNS vars RPAREN var_decl dbody - VAR nonempty_list(terminated(var,SEMICOLON)) - var SEMICOLON nonempty_list(terminated(var,SEMICOLON)) - var SEMICOLON - . IDENT COLON typ |