Skip to content

Commit

Permalink
Merge pull request ErlyORM#6 from inaka/jfacorro.84.syntax.error.befo…
Browse files Browse the repository at this point in the history
…re.elipsis

[inaka/levis#84] Added elipsis and comment as tokens.
  • Loading branch information
elbrujohalcon committed Aug 8, 2014
2 parents 35f666f + 5edcff8 commit 95e7bc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/aleppo_parser.yrl
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Terminals
'++' '--'
'==' '/=' '=<' '<' '>=' '>' '=:=' '=/=' '<='
'<<' '>>'
'!' '=' '::' '..'
dot.
'!' '=' '::' '..' '...'
comment dot.

Rootsymbol File.

Expand Down Expand Up @@ -203,3 +203,5 @@ ExpressionToken -> '!' : '$1'.
ExpressionToken -> '=' : '$1'.
ExpressionToken -> '::' : '$1'.
ExpressionToken -> '..' : '$1'.
ExpressionToken -> '...' : '$1'.
ExpressionToken -> comment : '$1'.

0 comments on commit 95e7bc6

Please sign in to comment.