Skip to content

Commit

Permalink
Fixed #10 AssertionError: PsiElement(NEGATION) on !
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Jul 3, 2014
1 parent fbc71a5 commit d830f3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/bnf/Gitignore.bnf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
gitignoreFile ::= item_*
negation ::= "!"

private item_ ::= entry_ | comment_ | CRLF
private entry_ ::= negation? (ENTRY_FILE | ENTRY_DIRECTORY | CRLF)
private item_ ::= (entry_ | comment_ | CRLF)
private entry_ ::= negation? (ENTRY_FILE | ENTRY_DIRECTORY)?
private comment_ ::= HEADER | SECTION | COMMENT

0 comments on commit d830f3d

Please sign in to comment.