Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix #7883; fix #7829 | Zahary Karadjov | 2018-05-26 | 1 | -0/+24 |
| | |||||
* | fixes channels for --gc:regions | Andreas Rumpf | 2018-05-25 | 1 | -2/+2 |
| | |||||
* | make tests green again | Araq | 2018-05-14 | 11 | -17/+17 |
| | |||||
* | Modify hash for HashSet to use `xor` to mix hash of items. | Lolo Iccl | 2018-05-09 | 1 | -4/+0 |
| | |||||
* | Modify previous commit and add tests | Lolo Iccl | 2018-05-09 | 1 | -4/+52 |
| | |||||
* | VM fix for refs | Oscar Nihlgård | 2018-05-08 | 1 | -0/+12 |
| | |||||
* | implement the export/except statement | Zahary Karadjov | 2018-05-07 | 2 | -0/+7 |
| | |||||
* | Bugfix: The compiler were not inserting proper downcasts for generic types | Zahary Karadjov | 2018-05-07 | 2 | -1/+21 |
| | | | | | | | This resulted in a codegen error in C++ mode, because the generic types were not defined in modules where calls requiring downcasts were used (generating a downcast forces the inclusion of the full definition of the involved types). | ||||
* | Support thread-local variables declared inside procs; fixes #7565 | Zahary Karadjov | 2018-05-07 | 1 | -0/+78 |
| | |||||
* | Backwards-compatible support for keyword arguments in the command syntax | Zahary Karadjov | 2018-05-07 | 1 | -2/+3 |
| | |||||
* | Bugfix: Allow matching on nkExprEqExpr against varargs[untyped] | Zahary Karadjov | 2018-05-07 | 1 | -0/+15 |
| | | | | | | | | | This enables macros accepting arbitrary keyword arguments: log("foo", prop1 = "bar", prop2 = "baz") As an added bonus, simple templates with varargs arguments can now forward their params to procs accepting keyword arguments. | ||||
* | A motivating example for the new `bindSym` behavior. | Zahary Karadjov | 2018-05-07 | 1 | -0/+154 |
| | | | | | | | | The example is a proof-of-concept logging library, allowing you to define lexically-scoped environments where certain logging attributes are applied automatically to all logging statements. fixes tmacro1 (use of `bindSym` inside static blocks) | ||||
* | Better support for treating templates and macros as symbols. | Zahary Karadjov | 2018-05-07 | 1 | -0/+173 |
| | | | | | | | | | | | | | | | | | | | This allows you to pass a template or a macro to another macro which can then inspect the implementation of the former template/macro using `getImpl`. Since templates can be freely redefined, this allows you to treat their symbols as compile-time variables that have lexical scope. A motivating PoC example for a logging library taking advantage of this will be provided in the next commit. Implementation details: * The name of a template or a macro will be consider a symbol if the template/macro requires parameters * For parameterless templates/macros, you can use `bindSym`, which was extended to also work outside of compile-time procs. | ||||
* | make the tester compile without warnings | Andreas Rumpf | 2018-05-06 | 1 | -4/+4 |
| | |||||
* | update the changelog | Andreas Rumpf | 2018-05-06 | 1 | -432/+0 |
| | |||||
* | Merge branch 'devel' into araq-parser-fixes | Andreas Rumpf | 2018-05-06 | 7 | -17/+23 |
|\ | |||||
| * | make tests green | Andreas Rumpf | 2018-05-05 | 6 | -17/+17 |
| | | |||||
| * | Merge pull request #7624 from skilchen/fix-issue7620 | Dominik Picheta | 2018-05-03 | 1 | -0/+6 |
| |\ | | | | | | | there is no hour 0 in am/pm time (see #7620) | ||||
| | * | there is no hour 0 in am/pm time | skilchen | 2018-04-16 | 1 | -0/+6 |
| | | | |||||
* | | | fixes #7582 | Andreas Rumpf | 2018-05-05 | 2 | -2/+13 |
|/ / | |||||
* | | make tests green | Araq | 2018-05-02 | 1 | -9/+6 |
| | | |||||
* | | make tests green again | Andreas Rumpf | 2018-05-02 | 18 | -102/+102 |
| | | |||||
* | | make 'not nil' experimental | Andreas Rumpf | 2018-05-02 | 8 | -9/+13 |
| | | |||||
* | | Don't hide overflow/underflow/divbyzero in semfold (#7732) | Oscar Nihlgård | 2018-05-02 | 2 | -1/+24 |
| | | | | | | | | | | * firstOrd/lastOrd bugfix * Don't hide overflow/underflow/divbyzero in semfold | ||||
* | | make tests green again | Araq | 2018-04-30 | 1 | -1/+1 |
| | | |||||
* | | make more tests green | Araq | 2018-04-30 | 3 | -3/+1 |
| | | |||||
* | | make more tests green | Andreas Rumpf | 2018-04-30 | 4 | -5/+5 |
| | | |||||
* | | make more tests green | Andreas Rumpf | 2018-04-30 | 1 | -2/+2 |
| | | |||||
* | | update the documentation about the new strings/seqs behaviours | Andreas Rumpf | 2018-04-29 | 1 | -1770/+0 |
| | | |||||
* | | make memoization test compile again | Andreas Rumpf | 2018-04-29 | 1 | -1/+1 |
| | | |||||
* | | disable hanging test | Andreas Rumpf | 2018-04-29 | 1 | -0/+1 |
| | | |||||
* | | correct comparisons for nil strings/seqs | Andreas Rumpf | 2018-04-28 | 1 | -0/+56 |
| | | |||||
* | | make tests green again | Andreas Rumpf | 2018-04-28 | 2 | -8/+8 |
| | | |||||
* | | fixes #7601, array construction of ptr generics (#7671) | andri lim | 2018-04-27 | 2 | -0/+68 |
| | | | | | | | | | | | | * fixes #7601, array construction of ptr generics * add more test | ||||
* | | nil in string concats does not produce crashes anymore | Andreas Rumpf | 2018-04-27 | 1 | -0/+25 |
| | | |||||
* | | fixes #7600, generic object with generic ref object parent typerel bug (#7678) | andri lim | 2018-04-27 | 2 | -0/+35 |
| | | | | | | | | | | | | * fixes #7600 * fix wrong logic | ||||
* | | Fixes #802, #803 and #3775 - genscript issues (#7677) | genotrance | 2018-04-25 | 5 | -10/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes #802, #803 and #3775 - genscript issues * Test case for genscript * Test script * Verify on Linux * Update categories.nim * Fix merge * Improve test framework * Windows fixes | ||||
* | | Rename `Time.nanoseconds` to `nanosecond` (#7673) | Oscar Nihlgård | 2018-04-25 | 1 | -2/+6 |
| | | | | | | | | | | | | * Rename `Time.nanoseconds` to `nanosecond` * Fix bug with Duration comparision | ||||
* | | make tests green again | Andreas Rumpf | 2018-04-24 | 2 | -0/+2 |
| | | |||||
* | | .experimental can now be used to enable specific features | Andreas Rumpf | 2018-04-24 | 1 | -1/+1 |
| | | |||||
* | | Don't escape multibyte characters (#7570) | Oscar Nihlgård | 2018-04-23 | 1 | -2/+8 |
| | | |||||
* | | remove dead code elimination option (#7669) | Jacek Sieka | 2018-04-23 | 15 | -19/+12 |
| | | |||||
* | | make tests green again | Andreas Rumpf | 2018-04-22 | 1 | -1/+1 |
| | | |||||
* | | make tests green again | Andreas Rumpf | 2018-04-22 | 1 | -11/+5 |
| | | |||||
* | | fixes #5113 | Andreas Rumpf | 2018-04-21 | 1 | -0/+9 |
| | | |||||
* | | fixes #6393 | Andreas Rumpf | 2018-04-21 | 1 | -0/+9 |
| | | |||||
* | | fixes #7637; assignments are not allowed to slice object; minor breaking change | Andreas Rumpf | 2018-04-21 | 3 | -13/+34 |
| | | |||||
* | | Add `fromWinTime` and deprecate `unixTimeToWinTime`/`winTimeToUnixTime` (#7641) | Oscar Nihlgård | 2018-04-19 | 1 | -1/+8 |
| | | |||||
* | | hasCustomPragma/getCustomPragmaVal: small fix (#7650) | RSDuck | 2018-04-19 | 1 | -1/+9 |
| | | | | | | | | | | | | | | | | * fix hasCustomPragma/getCustomPragmaVal for types without pragma * fix pragma on pointer test * removed trailing spaces | ||||
* | | fixes #7638; awaitAny blocks if the flow vars all have been complete already | Andreas Rumpf | 2018-04-19 | 1 | -0/+35 |
| | |