Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[...]**0..1 to [...]? for dec_number
  • Loading branch information
FROGGS committed Oct 3, 2013
1 parent d756b3f commit 7d0611b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HLL/Grammar.nqp
Expand Up @@ -73,8 +73,8 @@ grammar HLL::Grammar {
}

token dec_number {
| $<coeff>=[ '.' \d+ ] <escale>**0..1
| $<coeff>=[ \d+ '.' \d+ ] <escale>**0..1
| $<coeff>=[ '.' \d+ ] <escale>?
| $<coeff>=[ \d+ '.' \d+ ] <escale>?
| $<coeff>=[ \d+ ] <escale>
}

Expand Down

0 comments on commit 7d0611b

Please sign in to comment.