summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Removed mangling of object fields for the js target only. (#5226)Michael Jendrusch2017-01-172-8/+90
| | | | | | | | * removed mangling of object fields for the js target only. * changed default mangling behaviour for the php target as well. * Added test for unorthodox field names (reserved words and operators). Adjusted field accessors and object constructors / new to be ECMAScript first edition compatible, when using fieldnames which are reserved words.
* fixes #5218Andreas Rumpf2017-01-162-1/+42
|
* docs for the heap dump featureAndreas Rumpf2017-01-162-0/+18
|
* re additions for buffer (cstring) RE matching (#5117)jlp7652017-01-162-99/+245
| | | | | | | | | | | | | | | | | | * Replace expr with untyped * Add buffer (cstring) related procs Replace expr with untyped Replace testing assert() procs with doAssert() * make the string variants call the cstring variants in order to fight code size * Remove redundant proc * fix casting of cstring add init of variables (identified by verbosity:3) * Speed up - use pattern.e for exec() inline some procs
* Fix #5128, #5184. (#5214)Eugene Kabanov2017-01-168-481/+676
| | | | | | | | | | | | * Fix #5128, #5184. Removed flush() procedure from ioselectors.nim Changed methods of work with application-driven data * Make cache switch for kqueue, update test for it. * Fix registerProcess bug returns wrong id. Fix tupcoming_async test to compile with upcoming again. Change socket() as unique identifier to dup(socket) as unique identifier.
* Fixed Mersenne Twister (#5227)MednauN2017-01-161-2/+2
|
* Create temp var in deepcopy if needed (#5205)Brandon Pickering2017-01-152-2/+27
|
* M&S GC gets the heap dump featureAndreas Rumpf2017-01-153-69/+76
|
* finish tool: untested download featureAndreas Rumpf2017-01-151-1/+25
|
* Update system.nimAndreas Rumpf2017-01-141-2/+2
|
* default GC can do a sort of heap dump via -d:nimTypeNames and ↵Andreas Rumpf2017-01-143-3/+37
| | | | dumpNumberOfInstances()
* memory allocator hotfix: do not allocate tremendous amounts of memoryAndreas Rumpf2017-01-132-12/+18
|
* finish tool: slightly more informative error messageAndreas Rumpf2017-01-131-0/+1
|
* Merge pull request #5211 from illogica/patch-1Dominik Picheta2017-01-121-1/+1
|\ | | | | Make SockAddr.sa_data public
| * Make SockAddr.sa_data publicLoris Pederiva2017-01-111-1/+1
| | | | | | Make SockAddr.sa_data public, coherently with its Posix counterpart.
* | Correct the spelling of the word 'overridden'. (#5212)mfxmfx2017-01-112-4/+4
|/
* Workaround for the high cpu usage issue in coroutines on linux (#5186)Dmitriy Fomichev2017-01-111-3/+3
| | | Fixes high cpu usage when all coroutines are asleep
* Improve & optimize strutils 'find' procs (#5196)Parashurama2017-01-112-15/+76
| | | | | * add 'last' argument to 'find' procs in strutils * add 'rfind' proc for looking up set[char] in strutils * use optimised C function 'memchr' when available
* Fix for #5134 (parseJson(string) should fail on leftover data) (#5203)Lolo Iccl2017-01-112-0/+24
|
* Reset exprs before return by arg. Fixes #5098 (#5191)Brandon Pickering2017-01-112-2/+28
|
* random.shuffle now takes an openArray procAndreas Rumpf2017-01-111-2/+7
|
* Documented `shuffle` from `random` module (#5204)Benjamin Summerton2017-01-111-0/+1
|
* Handle different enum sizes in reprAux (#5207)Brandon Pickering2017-01-112-1/+34
|
* nim.cfg: update comments about the stack size to match reality (#5206)mfxmfx2017-01-111-4/+4
|
* alternative fix for #4884; fixes tlateboundstaticZahary Karadjov2017-01-111-1/+1
|
* Merge pull request #5208 from luked99/async-json-example-fixDominik Picheta2017-01-101-0/+1
|\ | | | | Async json example fix
| * asynchttpserver: import json in the example codeLuke Diamand2017-01-101-0/+1
|/ | | | | | The example code won't compile unless json is imported, because of the use of the %* operator. This can trip-up inexperienced Nim developers.
* bugfix: abs(0.0) should be +0.0Andreas Rumpf2017-01-101-1/+1
|
* add 'koch nimsuggest' command for consistencyAndreas Rumpf2017-01-101-0/+1
|
* add copyDir stdlib testAndreas Rumpf2017-01-101-0/+18
|
* use os.copyDir, not your own broken implementation of itAndreas Rumpf2017-01-101-9/+0
|
* add distros to docs properlyAraq2017-01-091-1/+1
|
* updated koch docsAraq2017-01-081-40/+0
|
* added checksumsAraq2017-01-081-6/+6
|
* fix #4884Zahary Karadjov2017-01-082-3/+15
|
* Small fixes in readme.Dominik Picheta2017-01-081-1/+1
|
* Fix C source gen.Dominik Picheta2017-01-081-1/+1
|
* updated download pageAraq2017-01-081-10/+10
|
* naive work-around for time redefinition (#5193)Fabian Keller2017-01-082-8/+10
|
* Remove colon when unpacking yielded tuples. Fixes #5173 (#5190)Brandon Pickering2017-01-081-1/+3
|
* make random.nim work for the JS target againAraq2017-01-081-2/+4
|
* random.nim: added shuffle proc; fixes 'mod' biasAraq2017-01-081-2/+12
|
* happy new yearAraq2017-01-0710-14/+14
|
* updated to version 0.16.0Araq2017-01-074-8/+11
|
* minor manual improvement; refs #5181Araq2017-01-071-1/+2
|
* Add 0.16.0 release notes.Dominik Picheta2017-01-072-4/+120
|
* disable pinToCpu for OSXAndreas Rumpf2017-01-071-4/+5
|
* koch.nim: critical fix for the tar.xz installationsAndreas Rumpf2017-01-071-14/+18
|
* Further tutorial updates (#5176)jlp7652017-01-072-15/+85
| | | | | | * tut1: added multiline comments * tut2: replaced expr/stmt with untyped/typed * added some more template/macro example * remove immediate pragma from example
* fixes #5179Araq2017-01-071-4/+5
|