summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* newruntime: progressAraq2019-04-0112-46/+57
|
* json.nim: tiny refactoringAraq2019-04-011-4/+1
|
* fixes #10934Araq2019-03-312-0/+2
|
* update unicode.nim (#10921)Miran2019-03-314-1148/+35443
| | | | | | | | | | * update unicode.nim * create a script to create the needed unicode data * make unicode.nim compatible with Unicode v12.0.0 * slightly improve unicode.nim documentation (fixes #4795) * more documentation
* fixes #10930Andreas Rumpf2019-03-301-0/+1
|
* make Boehm GC work on WindowsAraq2019-03-301-1/+4
|
* remove check for better error message (#10926)Arne Döring2019-03-291-3/+0
|
* fixes json.nim regressionAndreas Rumpf2019-03-292-16/+5
|
* change the order of appveyor tests (#10920)Miran2019-03-281-1/+1
| | | | | | | | | Testing packages sometimes randomly fails because of some reason not connected to Nim (e.g. github is down). Currently, that would prevent "regular" appveyor tests from running. Changing the order will allow "regular tests" to run regardless of the outside problems with packages.
* code cleanup (#10874)Arne Döring2019-03-286-61/+48
|
* manual: prefer 'typeof(x)' over 'type(x)'Andreas Rumpf2019-03-271-16/+20
|
* move more stuff into manual_experimentalAndreas Rumpf2019-03-272-382/+380
|
* manual.rst: move experimental features to manual_experimentalAndreas Rumpf2019-03-274-1330/+1250
|
* use atomicInc/atomicDec (#10906)Miran2019-03-271-6/+5
|
* Fix #10907 - remove unused typedef string (#10908)genotrance2019-03-261-2/+0
|
* proper fixnarimiran2019-03-261-1/+1
|
* fix nim-chronicles test: there is a new dependencynarimiran2019-03-261-1/+1
|
* fixes #10904Araq2019-03-261-3/+6
|
* disable testing of nim-chronicles until is fixednarimiran2019-03-261-1/+1
|
* add NimFrameFilter to nim-gdb.py (#10873)Arne Döring2019-03-261-0/+16
|
* fixes 'nimble install nimble' problemsAndreas Rumpf2019-03-261-2/+3
|
* macros: typoAndreas Rumpf2019-03-261-1/+1
|
* fixes #10896 (#10903)Andreas Rumpf2019-03-252-1/+8
|
* newruntime: bugfixesAndreas Rumpf2019-03-253-2/+8
|
* logging: better documentation (#10895)Jjp1372019-03-241-94/+572
|
* stats.nim: bugfix: use min in '+' [backport]Andreas Rumpf2019-03-231-1/+1
|
* fixes #8202 (#10888)Andreas Rumpf2019-03-232-1/+27
| | | | | | * fixes #8202 * make tests green
* improvements on the hot code reloading support (#10892)Viktor Kirilov2019-03-237-16/+42
| | | | | | | | * calling the "_actual" versions of functions when defined within the same module - slowdown for the snappy compression is now down from x6 to x4-x5 when HCR is ON * dynamically linking to the runtime for VS when HCR is on - binaries are smaller * compilerProcs are also called using the _actual direct version within the module they are defined (system)! * updated comments & goals * handling VS-compatible compilers on Windows in a cleaner way * now the .dll/.so files end up in the nimcache even when --nimcache isn't explicitly stated
* fixes #10886 [backport] (#10897)Andreas Rumpf2019-03-232-7/+34
|
* system.nim: documentation improvementsAndreas Rumpf2019-03-232-20/+22
|
* add short overview of the system module (#10883)Miran2019-03-232-24/+223
|
* more destructor based changes (#10885)Andreas Rumpf2019-03-2339-244/+445
| | | | | | | | | | | * mark user defined destructors with sfOverriden to simplify the logic * refactoring in preparation to merge liftings and generic instantiations for destructors * ast: introduce nkHiddenTryStmt for destructor generation in order to be able to optimize better the code later on * renamed 'patterns' switch to 'trmacros' as it was totally misleading before * destructors: introduce tfCheckedForDestructor flag in preparation of strict =destroy checking * test for invalid/too late destructor introductions * liftdestructors: make code robust for nimsuggest * --newruntime works for hello world again * newruntime: code generation for closures
* Add OpenMP overload with stepping (#10891)Mamy Ratsimbazafy2019-03-223-5/+35
|
* fixes #10884 (#10887)Andreas Rumpf2019-03-221-1/+1
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2019-03-2116-25/+75
|\
| * add condition for szUnknown (#10869)Arne Döring2019-03-211-2/+2
| |
| * Lineinfo fix (#10871)Arne Döring2019-03-213-1/+20
| |
| * use abort instead of quit (#10872)Arne Döring2019-03-212-5/+9
| |
| * fixes #10861 (#10877)cooldome2019-03-212-3/+18
| |
| * REVERT "optPar"Andrii Riabushenko2019-03-211-3/+2
| | | | | | | | This reverts commit 5f1a59216bb79684a5c708978cded1c5d5140574.
| * optParAndrii Riabushenko2019-03-211-2/+3
| |
| * increase VM limit (#10870)cooldome2019-03-201-1/+1
| |
| * docgen: add links for var, let and const (refs #10487) (#10868)Miran2019-03-202-4/+4
| | | | | | | | | | | | * docgen: add links for var, let and const (refs #10487) * change the expected html
| * improve docs for os.joinPath, fixes #10836 (#10866)Miran2019-03-201-2/+7
| |
| * live with the hacks, PCRE's design is crapAraq2019-03-193-5/+6
| |
| * docgen: generate pragma after generic, fixes #10792 (#10865)Miran2019-03-191-2/+8
| |
* | fixes -d:nimTypeNames leak detection regressionAndreas Rumpf2019-03-211-4/+4
|/
* pcre.nim: added pcre_free and removed hacks in nre and re.nimAndreas Rumpf2019-03-193-6/+5
|
* mark user defined destructors with sfOverriden to simplify the logicAndreas Rumpf2019-03-191-0/+3
|
* add tastspec (and ast_pattern_matching) (#10863)Arne Döring2019-03-192-0/+1600
|