summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Many renames. Created high level asyncnet module.Dominik Picheta2014-03-224-12/+175
|
* Copied most blocking socket operations to the net module.Dominik Picheta2014-03-224-33/+1020
|
* Clean up IP address code in net module.Dominik Picheta2014-03-221-28/+54
|
* Asyncio2 doc improvements. Changed recvLine's behaviour.Dominik Picheta2014-03-221-11/+9
| | | | | | | recvLine had an edge case where it would return a partial line if the socket were to be disconnected in the middle of a line being read. The behaviour now is that the data is simply lost as it likely will be unparsable by the protocol anyway.
* fixes wrong commitAraq2014-03-221-2/+0
|
* fixes #1006Araq2014-03-223-8/+14
|
* fixes #1023Araq2014-03-223-21/+50
|
* fixes #1010Araq2014-03-224-28/+51
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-03-2253-329/+1264
|\
| * Merge pull request #1021 from skyfex/develAndreas Rumpf2014-03-212-0/+12
| |\ | | | | | | Added documentation for packed pragma
| | * Fixed typo in docsAudun Wilhelmsen2014-03-211-1/+1
| | |
| | * Fixed typo and line breaks in docsAudun Wilhelmsen2014-03-202-4/+10
| | |
| | * Added documentation for packed pragmaAudun Wilhelmsen2014-03-202-0/+6
| | |
| * | msg -> errmsgZahary Karadjov2014-03-213-5/+5
| |/
| * fix #1015Zahary Karadjov2014-03-202-3/+32
| |
| * fix #1016Zahary Karadjov2014-03-201-1/+1
| |
| * fix the handling of "msg" testsZahary Karadjov2014-03-202-2/+6
| |
| * fix #1018Zahary Karadjov2014-03-201-8/+20
| | | | | | | | | | | | Previously, generic types originating from the same body symbol were compared structurally. The bug illustrates a case, where such a comparison is not correct. The new approach follows the established method used in typeRel.
| * implements ``distinct with/without X, Y``Zahary Karadjov2014-03-205-27/+72
| | | | | | | | | | | | This still doesn't work quite right, because some common operations like array indexing lay completely outside the scope/symbol lookup system - they are not even magics.
| * fix #1013Zahary Karadjov2014-03-202-4/+33
| |
| * reference implementation of a vector swizzle libraryZahary Karadjov2014-03-2012-58/+225
| | | | | | | | | | This also provides the initial steps towards support for type class "filtered" type inference fixes an "ordinal type expected" ICE, related to the use of static params
| * Merge pull request #1014 from skyfex/develAndreas Rumpf2014-03-198-13/+96
| |\ | | | | | | Packed pragma and tests for packed and union pragma
| | * Fix compilation error when using packed pragma with vcc.Audun Wilhelmsen2014-03-181-1/+1
| | |
| | * Added support for {.packed.} pragma on objectsAudun Wilhelmsen2014-03-188-13/+96
| |/ | | | | | | Added tests for packed and union pragmas
| * Merge pull request #999 from zielmicha/zlib_abi_versionAndreas Rumpf2014-03-161-1/+1
| |\ | | | | | | Provide zlib version explicitly on Linux.
| | * Provide zlib version explicit on Linux.Michał Zieliński2014-03-131-1/+1
| | | | | | | | | | | | | | | | | | - workaround for Gentoo (#987), - also, it's a good practice to provide ABI version in calls to dlopen, so if zlib ever changes ABI, wrappers won't break siliently.
| * | Merge pull request #1000 from gradha/pr_adds_likely_example_983Andreas Rumpf2014-03-161-4/+24
| |\ \ | | | | | | | | Adds example to likely/unlikely docstring. Refs #983.
| | * | Adds example to likely/unlikely docstring. Refs #983.Grzegorz Adam Hankiewicz2014-03-131-4/+24
| | |/
| * | Merge pull request #1003 from flaviut/develAndreas Rumpf2014-03-161-0/+1
| |\ \ | | | | | | | | Add token position to `nimrod scan`
| | * | Add token position to `nimrod scan`flaviut2014-03-141-0/+1
| | | | | | | | | | | | A block of the format "linenum:col\t' is added to the start of each token that is printed.
| * | | fix #1007Zahary Karadjov2014-03-161-5/+6
| | | |
| * | | make some tests red :) (i.e. print failure details while running the tester)Zahary Karadjov2014-03-164-6/+10
| | | |
| * | | make some tests greenZahary Karadjov2014-03-1613-30/+45
| | | |
| * | | handle arbitrary expressions dependent on static input params in proc signaturesZahary Karadjov2014-03-1610-18/+60
| | | |
| * | | use g++ and clang++ automatically when compiling to C++Zahary Karadjov2014-03-162-22/+32
| | | |
| * | | more robust handling of proc signatures containing inter-param type referencesZahary Karadjov2014-03-166-30/+106
| | | |
| * | | fix #997Zahary Karadjov2014-03-162-7/+15
| | | |
| * | | fix #996Zahary Karadjov2014-03-162-3/+9
| | | |
| * | | first phase of tyGenericParam reforms needed for static paramsZahary Karadjov2014-03-166-47/+79
| | | |
| * | | fix #1001Zahary Karadjov2014-03-163-2/+3
| | | |
| * | | fix #715 againZahary Karadjov2014-03-166-4/+29
| | | | | | | | | | | | | | | | the regression was caused by the introduction of "generic" lambdas
| * | | allow multi-line expressions using the dot operatorZahary Karadjov2014-03-162-8/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this enables parsing of expressions like: ``` Nimrod s.items .map(proc (x): auto = x * 2) .filter do (x) -> auto: return x % 2 == 0 .group_by((x) => x.length) ```
| * | | grammar fix: allow free-standing expressions such as type(foo) is barZahary Karadjov2014-03-161-4/+19
| | | |
| * | | PFuture[void] now works.Dominik Picheta2014-03-152-39/+65
| | | | | | | | | | | | | | | | | | | | Return types can also be completely ommitted. PFuture[void] will then be implicitly deduced.
| * | | Merge pull request #972 from Matthias247/ipaddressDominik Picheta2014-03-141-2/+259
| |\ \ \ | | | | | | | | | | Added a IpAddress structure to the net module
| | * | | Make the IP address exceptions more detailedMatthias Einwag2014-03-141-19/+24
| | | | |
| | * | | raise exceptions through newExceptionMatthias Einwag2014-03-091-18/+18
| | | | |
| | * | | $ for TIpAddress now prints in the recommended formatMatthias Einwag2014-03-041-2/+13
| | | | |
| | * | | Use character ranges from strutils.Matthias Einwag2014-03-041-6/+17
| | | | |
| | * | | Added a IpAddress structure to the net moduleMatthias Einwag2014-03-041-1/+231
| | | | |