summaryrefslogtreecommitdiffstats
path: root/tests/bugs/gh-3589.slang
Commit message (Collapse)AuthorAge
* Change representation of float literal in language translation (#3798)kaizhangNV2024-03-20
| | | | | | | | | | | | | | | * Change representation of float literal in language translation Fix the issue (#3490). Previous implementation could zero out the very small float literal. We now use scientific notation instead to represent the float numbers whose exponential part are larger than a threshold. In other cases, keep using fixed notation. --------- Co-authored-by: Yong He <yonghe@outlook.com>
* Fix parsing of literals in stdlib. (#3610)Yong He2024-02-21
* Fix parsing of literals in stdlib. * Fix double lit limits.