Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'zahary' into araq2 | Andreas Rumpf | 2017-05-16 | 21 | -14/+1041 |
|\ | |||||
| * | fix a regrsesion in signature matching of derived ptr types | Zahary Karadjov | 2017-04-18 | 1 | -0/+20 |
| | | |||||
| * | more sophisticated test for the previous commit | Zahary Karadjov | 2017-04-16 | 1 | -2/+22 |
| | | |||||
| * | fix compilation regression in alea | Zahary Karadjov | 2017-04-16 | 1 | -0/+33 |
| | | |||||
| * | fix a compilation error in linalg | Zahary Karadjov | 2017-04-16 | 1 | -0/+16 |
| | | |||||
| * | fix #5689 | Zahary Karadjov | 2017-04-15 | 2 | -1/+69 |
| | | |||||
| * | fix #5683 | Zahary Karadjov | 2017-04-14 | 1 | -0/+15 |
| | | |||||
| * | fix a parsing regression (do is still mandatory in some situations) | Zahary Karadjov | 2017-04-14 | 1 | -0/+16 |
| | | |||||
| * | allow StmtLists to pass through semExprWithType | Zahary Karadjov | 2017-04-11 | 1 | -1/+7 |
| | | | | | | | | | | | | This fix was necessary in order to fix the lambda lifting used in the "jsffi" module, which relies on turning nkStmtList into nkLambda in a catch-all dot operator. | ||||
| * | lift parameter-less do block to lambdas | Zahary Karadjov | 2017-04-10 | 3 | -9/+11 |
| | | |||||
| * | support post expression blocks in return and yield | Zahary Karadjov | 2017-04-10 | 1 | -2/+1 |
| | | |||||
| * | fix a regression in tlexerex | Zahary Karadjov | 2017-04-10 | 1 | -3/+2 |
| | | |||||
| * | fix a parsing regression (calls with do inside param lists) | Zahary Karadjov | 2017-04-10 | 1 | -0/+19 |
| | | | | | | | | | | This treatment is applied only when "do" is used, because the code foo(x: bar) is recognized as object construction. | ||||
| * | fully consisent parsing between the new and the old 'do blocks' | Zahary Karadjov | 2017-04-10 | 1 | -0/+478 |
| | | |||||
| * | the new blocks without 'do' produce compatible AST with 'do blocks' | Zahary Karadjov | 2017-04-09 | 1 | -8/+6 |
| | | |||||
| * | improve the usability of the jsffi module | Zahary Karadjov | 2017-04-09 | 1 | -4/+48 |
| | | | | | | | | | | | | * All JavaScript operators are usable with JsObject * The dot operators will use native JavaScript strings * Results returned from dot calls are consired discardable | ||||
| * | fix the do notation when used with procs | Zahary Karadjov | 2017-04-09 | 1 | -0/+47 |
| | | |||||
| * | fix #5643; fix #5644 | Zahary Karadjov | 2017-04-08 | 1 | -0/+30 |
| | | |||||
| * | Restore the Nim's 0.14 proper handling of generic aliases | Zahary Karadjov | 2017-04-08 | 4 | -0/+101 |
| | | | | | | | | | | | | | | | | | | | | | | A more efficient implementation is possible by restoring the old lifting ot tyGenericInvocation to tyGenericInst in liftTypeParam, but this fix will suffice for now. fixes #5087 fixes #5602 fixes #5641 fixes #5570 | ||||
| * | test case for #5640 | Zahary Karadjov | 2017-04-07 | 1 | -0/+6 |
| | | |||||
| * | fix #5658 | Zahary Karadjov | 2017-04-07 | 1 | -0/+22 |
| | | |||||
| * | fix #5654 | Zahary Karadjov | 2017-04-07 | 1 | -0/+42 |
| | | |||||
| * | fix #5642 | Zahary Karadjov | 2017-04-07 | 1 | -0/+25 |
| | | |||||
| * | fix #5648 | Zahary Karadjov | 2017-04-07 | 1 | -0/+21 |
| | | |||||
* | | compiler option for testament (#5713) | Jacek Sieka | 2017-05-15 | 2 | -6/+11 |
| | | | | | | | | | | | | * compiler option for testament * different spacing | ||||
* | | Fixes #5532 win async write (#5791) | Andreas Rumpf | 2017-05-14 | 1 | -0/+17 |
| | | | | | | | | | | | | * nimgrab tool bugfix: don't divide by zero * fixes #5532 (asyncfile write on Windows) * add a comment about what has been tried instead | ||||
* | | fixed macros.getTypeImpl for a symbol of type tyGenericBody (#5788) (#5812) | jcosborn | 2017-05-14 | 1 | -18/+47 |
| | | | | | | | | | | * fixed macros.getTypeImpl for a symbol of type tyGenericBody * added test case and commented test code | ||||
* | | Implement 'take' for Table and TableRef (#5773) | Ruslan Mustakov | 2017-05-04 | 1 | -0/+15 |
| | | |||||
* | | disable fragile parts of thttpclient.nim | Andreas Rumpf | 2017-05-04 | 1 | -9/+11 |
| | | |||||
* | | added IP v6 parsing tests | Andreas Rumpf | 2017-05-04 | 1 | -0/+217 |
| | | |||||
* | | Implement dial, support IPv6 in httpclient (#5763) | Ruslan Mustakov | 2017-05-02 | 3 | -2/+151 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement dial, support IPv6 in httpclient Added ``dial`` procedure to networking modules: ``net``, ``asyncdispatch``, ``asyncnet``. It merges socket creation, address resolution, and connection into single step. When using ``dial``, you don't have to worry about IPv4 vs IPv6 problem. Fixed addrInfo loop in connect to behave properly. Previously it would stop on first non-immediate failure, instead of continuing and trying the remaining addresses. Fixed newAsyncNativeSocket to raise proper error if socket creation fails. Fixes: #3811 * Check domain during connect() only on non-Windows This is how it was in the previous implementation of connect(). * Call 'osLastError' before 'close' in net.dial * Record osLastError before freeAddrInfo in net.dial * Add missing docs for 'dial' proc * Optimize dial to create one FD per domain, add tests And make async IPv6 servers work on Windows. * Add IPv6 test to uri module * Fix getAddrString error handling | ||||
* | | WIFSIGNALED means process has exited too (with a bang!) (#5678) | Jacek Sieka | 2017-04-27 | 1 | -0/+36 |
| | | |||||
* | | fixes tuple unpacking regression | Andreas Rumpf | 2017-04-26 | 1 | -0/+2 |
| | | |||||
* | | fixes a parser bug | Araq | 2017-04-25 | 1 | -0/+6 |
| | | |||||
* | | Fix for #5695 make subscript operator overloadable for tuples (#5749) | cooldome | 2017-04-24 | 1 | -0/+40 |
| | | |||||
* | | Add test for previous commit. | Dominik Picheta | 2017-04-17 | 1 | -1/+10 |
| | | |||||
* | | Fixes `null` handling for object refs in JSON unmarshal macro. | Dominik Picheta | 2017-04-17 | 1 | -2/+11 |
| | | |||||
* | | Fix JSON macro bug with ref objects. | Dominik Picheta | 2017-04-17 | 1 | -3/+29 |
| | | |||||
* | | Fix tioselectors.nim for appveyor. (#5694) | Eugene Kabanov | 2017-04-12 | 1 | -3/+4 |
| | | |||||
* | | Implement support for enum fields in JSON macro. | Dominik Picheta | 2017-04-09 | 1 | -1/+17 |
| | | |||||
* | | Merge branch 'feature/json-macro' into devel | Dominik Picheta | 2017-04-09 | 1 | -0/+169 |
|\ \ | |||||
| * | | Document `to` macro in JSON and add example. | Dominik Picheta | 2017-04-09 | 1 | -0/+26 |
| | | | |||||
| * | | Implements else branch for JSON unmarshalling of object variants. | Dominik Picheta | 2017-04-09 | 1 | -2/+36 |
| | | | |||||
| * | | Improve error messages and add tests for the JSON macro. | Dominik Picheta | 2017-04-08 | 1 | -25/+75 |
| | | | |||||
| * | | Support int, string and bool fields in unmarshal json macro. | Dominik Picheta | 2017-04-08 | 1 | -21/+40 |
| | | | |||||
| * | | First implementation of JSON unmarshal macro. | Dominik Picheta | 2017-04-08 | 1 | -0/+40 |
| |/ | |||||
* | | Merge pull request #5612 from ehmry/AsyncFile.setLen | Dominik Picheta | 2017-04-08 | 1 | -2/+3 |
|\ \ | |/ |/| | asyncfile: setLen procedure for files | ||||
| * | getFileSize and setFileSize procedures for File and AsyncFile | Emery Hemingway | 2017-04-05 | 1 | -2/+3 |
| | | | | | | | | | | Platform independent procedure to set a file length. Useful when replacing file content. | ||||
* | | Merge pull request #5564 from nim-lang/fix/4556 | zah | 2017-04-06 | 2 | -1/+123 |
|\ \ | | | | | | | Fix/4556 | ||||
| * | | object construction: test cases and manual additions | Zahary Karadjov | 2017-04-06 | 1 | -0/+122 |
| | | |