Merge pull request #21 from andreaferretti/devel

Fixed type hints for floats
This commit is contained in:
flyx 2016-07-07 17:18:46 +02:00 committed by GitHub
commit b41ab142d5
1 changed files with 6 additions and 5 deletions

View File

@ -77,6 +77,7 @@ template advanceTypeHint(ch: char) {.dirty.} =
of '0': of '0':
[ythInitial, ythMinus] => yth0 [ythInitial, ythMinus] => yth0
[ythNumE, ythNumEPlusMinus] => ythExponent [ythNumE, ythNumEPlusMinus] => ythExponent
[ythInt, ythDecimal, ythExponent] => nil
of '1'..'9': of '1'..'9':
[ythInitial, ythMinus] => ythInt [ythInitial, ythMinus] => ythInt
[ythNumE, ythNumEPlusMinus] => ythExponent [ythNumE, ythNumEPlusMinus] => ythExponent