summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* make test greenAraq2019-09-023-41/+52
|
* Merge branch 'devel' into uint-range-checksAraq2019-09-02116-2818/+2432
|\
| * gc:destructors progressAraq2019-09-017-79/+31
| |
| * hashes: implement murmur3 (#12022)Miran2019-09-017-57/+202
| | | | | | | | | | | | | | | | * hashes: implement murmur3 * refactoring; there is only one murmurHash and it works at compile-time via VM hooks * fixes JS tests * makes toOpenArrayByte work with C++ * make it bootstrap in C++ mode for 0.20
| * Fix int literals and range interaction (#11197)Oscar Nihlgård2019-08-315-17/+29
| | | | | | | | | | | | | | | | * Fix int literals and range interaction * Fix test * remove float range fix; update changelog
| * fixes #11903 (#11908)Arne Döring2019-08-313-1/+38
| |
| * Merge pull request #12099 from cooldome/destructor_too_lateAndreas Rumpf2019-08-312-2/+20
| |\ | | | | | | fixes #12092
| | * support forward declared destructorsAndrii Riabushenko2019-08-311-2/+6
| | |
| | * fixes #12092Andrii Riabushenko2019-08-312-2/+16
| | |
| * | Return typeof(nil) (#12100)Andreas Rumpf2019-08-314-3/+9
| |\ \ | | | | | | | | | | | | | | | | | | | | * Allow typeof(nil) as a return type * $typeof(nil) is now "typeof(nil)", not "nil"
| | * | $typeof(nil) is now "typeof(nil)", not "nil"Albert Safin2019-08-311-1/+1
| | | |
| | * | Allow typeof(nil) as a return typeAlbert Safin2019-08-314-2/+8
| | |/
| * / Support iterators returning lent T (#11938)cooldome2019-08-317-27/+116
| |/ | | | | | | | | | | | | * lent iterators * rebase tests * update changelog * fix comments, more tests
| * typeToString can now show (recursively) resolved type aliases; fixes #8569 ↵Timothee Cour2019-08-316-203/+272
| | | | | | | | | | | | | | | | | | | | | | #8083 #8570 (#11678) * nested typeToString * typeToString: preferResolved * add test * fix test * preferMixed * fix tests
| * Remove ENDB (#12095)Clyybber2019-08-3116-1216/+19
| |
| * make testament a tool we ship with Nim; fixes #12084 (#12088)Andreas Rumpf2019-08-307-10/+39
| | | | | | | | | | | | * make testament a tool we ship with Nim; fixes #12084 * moved config to fit * adapt testament tests to use the testament binary
| * enable testing of more packagesnarimiran2019-08-301-2/+3
| |
| * fix #12037 (#12089)Clyybber2019-08-302-14/+21
| |
| * fixes #12042 (#12083)Andreas Rumpf2019-08-294-3/+28
| | | | | | | | | | | | * fixes #12042 * make tests green again
| * fixes a critical type checking regressionAraq2019-08-291-1/+1
| |
| * fixes 5870 (#11704)Andreas Rumpf2019-08-294-26/+47
| | | | | | | | | | | | * fixes #5870 * make tclosure test green again * this check is correct but breaks some Nimble packages
| * fixes #12074 (#12080)Andreas Rumpf2019-08-291-0/+5
| |
| * fixes #11941 (#12079)Andreas Rumpf2019-08-293-3/+23
| |
| * refactor sizealignoffset (#12077)Andreas Rumpf2019-08-286-229/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * small refactoring * refactor computeObjectOffsetFoldFunction with AccumObject * refactor packed object offstes fold function * refactor compute union object offsets fold function * merge normal/packed object offset fold function * compiletime offsetof in c++ inheritance objects * enable c++ inheritance offsetof tests * correct alignment for big sets/enums on weird 32bit platforms * uncomputedSize -> unknownSize * workaround for travis * fixes win32 alignment problems
| * only store finally block in exception stack (#11876)Jacek Sieka2019-08-282-10/+12
| |
| * lift destructor for openarray (#12073)cooldome2019-08-285-13/+30
| | | | | | | | * destroy for sink openarray
| * Fixes #12044 (#12071)Ico Doornekamp2019-08-281-5/+5
| |
| * remove unicode.Rune16 without deprecation period; fixes ↵Andreas Rumpf2019-08-282-5/+12
| | | | | | | | https://github.com/nim-lang/RFCs/issues/151 (#12072)
| * Refactored injectdestructors.nim (#11926)Clyybber2019-08-281-383/+342
| | | | | | | | One improvement over #devel is visible in the transformation of getEnv. With this approach we move to result whenever possible.
| * Fix several float range issues (supersedes #11905) (#12067)Andreas Rumpf2019-08-276-3/+27
| |\ | | | | | | | | | | | | | | | * Fix several float range issues * address the comments
| | * address the commentsnarimiran2019-08-273-7/+4
| | |
| | * Fix several float range issuesOscar Nihlgård2019-08-275-3/+30
| | |
| * | Fix to int to biggest int (#12066)Arne Döring2019-08-2710-64/+43
| | | | | | | | | | | | | | | * fix to(Biggest)Int * kill toFloat magics as well
| * | fixes #12015 by also checking kind of `typeNode` (#12016)Vindaar2019-08-272-4/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes #12015 by also checking kind of `typeNode` If a tuple field is aliased it'll appear the same as a ref type in a call to `getType` if only for the kind of the resulting `NimNode` is checked (that is a `nnkBracketExpr`) * fix test case due to #12017 and add more realistic test case Adds an additional test case, which includes generics and is closer to the real failure I encountered * remove previous fix and fix differently after all The previous fix was incomplete, because it failed for generics. Note that the `of "tuple"` is not actually needed, the `nnkBracketExpr` branch in the `else` branch would catch it too, but I decided to introduce it for clarity. However, the latter is actually needed, because it seems for aliases of `seq` we end up in it. * update comment about global `%` proc in json test
| * | fixes #12024 (#12065)Andreas Rumpf2019-08-271-0/+8
| | |
| * | fixes #12029; finish the 'unused import' feature (#12064)Andreas Rumpf2019-08-279-4/+28
| | |
| * | Typos fixed, handleRefillChar() described (#12062)Artem V L2019-08-271-3/+4
| | |
| * | fixes #12056 (#12063)Andreas Rumpf2019-08-272-3/+6
| | |
| * | disable testing of 'norm' packagenarimiran2019-08-271-1/+1
| |/
| * abort is noreturn (#12061)Jacek Sieka2019-08-271-1/+1
| |
| * manual: more precise rules about evaluation orderAraq2019-08-271-0/+38
| |
| * fixes #12040Araq2019-08-271-0/+1
| |
| * fixes 9195 (#12055)Andreas Rumpf2019-08-273-3/+35
| |
| * unicode.nim: fixed spacing to something saneAndreas Rumpf2019-08-261-1/+1
| |
| * semtypes.nim: more refactorings for liftParamTypeAndreas Rumpf2019-08-261-35/+37
| |
| * semtypes.nim: little refactoring for liftParamTypeAndreas Rumpf2019-08-261-26/+20
| |
| * manual: better documentation for implicit genericsAndreas Rumpf2019-08-261-18/+82
| |
| * Remove old and unused parseBody/parseResponse procs in httpclient. (#11949)Dominik Picheta2019-08-261-130/+2
| |
| * fixes #12033 (#12039)Arne Döring2019-08-262-2/+15
| |
| * fixes #11832 (#12049)Palash Nigam2019-08-261-2/+2
| |