summary refs log tree commit diff stats
path: root/tests/system/tdollars.nim
Commit message (Collapse)AuthorAgeFilesLines
* remove exception (#18906)flywind2021-10-221-0/+7
|
* improvements to `addInt` and `$` for integer types (#18592)Timothee Cour2021-08-191-27/+54
| | | | | | | | * improvements to $(SomeInteger) and addInt * remove mIntToStr, mInt64ToStr * improvements * fix tests/pragmas/tinjectstmt.nim; the diff is harmless, cgen code is identical with -d:danger or debug mode * rm tests/system/tstrmantle.nim * revert compiler/jsgen.nim for -d:nimVersion140
* Ref #12700 add testcase (#17096)flywind2021-02-191-1/+9
| | | | | | | * fix js unsigned integer * better * ref #12700 add testcase
* fix stringify unsigned integer in JS and JS VM (#17086)flywind2021-02-181-0/+28
| | | | | * fix js unsigned integer * better
* [backport:1.4] JS cstring null fixes (#16979)hlaaftana2021-02-111-1/+24
| | | | | * [backport:1.4] JS cstring null fixes * fix JS move string * make it look cleaner
* follow #16505 move and active tests (#16508)flywind2020-12-301-0/+26
| | | | | * fix printing negative zero in JS backend * move tests
* fix #14350, cstrings in JS init as null (#14355)hlaaftana2020-05-151-0/+7
| | | | * fix #14350, cstrings in JS init as null
* `$` now works for unsigned intergers with `nim js` (#14122)Timothee Cour2020-04-271-0/+72
* $(unsigned) now works for js * move NimMajor+friends closer to NimVersion according as per reviewer feedback