summaryrefslogtreecommitdiff
path: root/tests/bugs/gh-3589.slang
AgeCommit message (Collapse)Author
2024-03-20Change representation of float literal in language translation (#3798)kaizhangNV
* 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>
2024-02-21Fix parsing of literals in stdlib. (#3610)Yong He
* Fix parsing of literals in stdlib. * Fix double lit limits.