Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: async: Tests for `all` proc added. | Konstantin Molchanov | 2016-05-31 | 1 | -0/+50 |
| | |||||
* | changed the compiler's path handling; fixes #546 | Andreas Rumpf | 2016-05-31 | 4 | -4/+5 |
| | |||||
* | make test green | Andreas Rumpf | 2016-05-30 | 1 | -2/+2 |
| | |||||
* | moved random procs from math to its own module (breaking change) | Andreas Rumpf | 2016-05-30 | 5 | -5/+5 |
| | |||||
* | Merge branch 'patch/fix-3496-generic-tmpl-args' of ↵ | Andreas Rumpf | 2016-05-29 | 1 | -0/+31 |
|\ | | | | | | | https://github.com/nanoant/Nim into nanoant-patch/fix-3496-generic-tmpl-args | ||||
| * | fixes #3496 | Adam Strzelecki | 2015-10-29 | 1 | -0/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem comes from the fact that macroOrTmpl[...] is transformed by semSubscript which is trying to evaluate macroOrTmpl identifier in place. This is okay for non-generic macros or templates, but wrong for generic ones, that do not have a chance to receive their generic arguments explicitly specified in brackets. Solution: 1. macroOrTmpl[...] where macroOrTmpl is non-generic macro or template, then macroOrTmpl is evaluated before applying brackets. (as before) 2. macroOrTmpl[...] where macroOrTmpl is generic macro or template, then if: a. It comes from macroOrTmpl[...](...) call expr (efInCall), then macroOrTmpl is turned into a symbol (efNoEvaluate) rather than evaluating it in place, then whole bracket expr is returned to semIndirectOp which transforms it to proper generic macro or template call with explicit generic arguments. b. macroOrTmpl[...] does not come from call expr, as above macroOrTmpl is transformed to symbol, then it is transformed into proper generic macro or template call with explicit generic arguments and no normal arguments. | ||||
* | | fixes #3729 | Andreas Rumpf | 2016-05-29 | 2 | -0/+372 |
| | | |||||
* | | fixes #4177 | Andreas Rumpf | 2016-05-28 | 1 | -0/+15 |
| | | |||||
* | | Merge pull request #4113 from jcosborn/gettypeinst | Andreas Rumpf | 2016-05-28 | 1 | -0/+122 |
|\ \ | | | | | | | getTypeInst | ||||
| * | | getTypeInst and getTypeImpl mostly working now and added test | James Osborn | 2016-05-04 | 1 | -0/+122 |
| | | | |||||
* | | | makes tests green again | Andreas Rumpf | 2016-05-28 | 1 | -3/+4 |
| | | | |||||
* | | | fixes critical 'do' parsing bug | Andreas Rumpf | 2016-05-28 | 1 | -0/+79 |
| | | | |||||
* | | | fixes #4227 | Andreas Rumpf | 2016-05-27 | 1 | -0/+24 |
| | | | |||||
* | | | Merge pull request #4130 from lihf8515/devel | Andreas Rumpf | 2016-05-26 | 1 | -23/+35 |
|\ \ \ | | | | | | | | | Update parsecfg.nim | ||||
| * | | | Update tparscfg.nim | lihf8515 | 2016-05-02 | 1 | -23/+35 |
| |/ / | |||||
* | | | Fixes #4222 | Yuriy Glukhov | 2016-05-26 | 1 | -1/+12 |
| | | | |||||
* | | | fixes issue 4212 && add test for various valid zero floats. | Parashurama | 2016-05-25 | 1 | -13/+21 |
| | | | |||||
* | | | fixes #4212 | Andreas Rumpf | 2016-05-25 | 1 | -1/+1 |
| | | | |||||
* | | | Merge branch 'prim-gc' into devel | Andreas Rumpf | 2016-05-22 | 3 | -0/+497 |
|\ \ \ | |||||
| * | | | fixes #3184 | Andreas Rumpf | 2016-05-22 | 2 | -0/+458 |
| | | | | |||||
| * | | | fixes #3793 | Andreas Rumpf | 2016-05-16 | 2 | -0/+39 |
| | | | | |||||
* | | | | Slightly better test case | Dmitry Polienko | 2016-05-20 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | Tests identity rather than exact output. | ||||
* | | | | Fix toJSStr for control characters | nigredo-tori | 2016-05-20 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | fixes #4190 Add leading zero to encoded character if it is less than 0x10 | ||||
* | | | | Merge pull request #4188 from Parashurama/improve_float_parsing | Andreas Rumpf | 2016-05-20 | 2 | -0/+47 |
|\ \ \ \ | | | | | | | | | | | fixes some issues with underscores in float literals. add more tests. | ||||
| * | | | | fixes some issues with underscores in float literals. add more tests. | Parashurama | 2016-05-19 | 2 | -0/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes some potential issues with underscores in float literals. adds more checks for badly positionned underscores in float literals. adds more test files. | ||||
* | | | | | Added a test case | Yuriy Glukhov | 2016-05-18 | 1 | -0/+6 |
|/ / / / | |||||
* | | | | Merge pull request #4180 from cheatfate/callsoon2 | Dominik Picheta | 2016-05-18 | 3 | -7/+7 |
|\ \ \ \ | | | | | | | | | | | Resolve bugs with `deep recursion` of asyncdispatch. | ||||
| * | | | | Resolve bugs with `deep recursion` of asyncdispatch. | cheatfate | 2016-05-18 | 3 | -7/+7 |
| |/ / / | | | | | | | | | | | | | | | | | Introduce callSoon() implementation. Patch tests to use waitFor() instead of asyncCheck() | ||||
* / / / | fix issue 4181. add testcase. | Parashurama | 2016-05-18 | 1 | -0/+15 |
|/ / / | |||||
* | | | Merge pull request #4025 from flyx/highlight-yaml | Andreas Rumpf | 2016-05-12 | 1 | -0/+139 |
|\ \ \ | | | | | | | | | YAML highlighting support for doctools/highlite | ||||
| * | | | Fixes to YAML highlighting support, added tests | Felix Krause | 2016-04-01 | 1 | -0/+139 |
| | | | | |||||
* | | | | fixes #950 | Andreas Rumpf | 2016-05-12 | 1 | -0/+16 |
| | | | | |||||
* | | | | make tests green | Andreas Rumpf | 2016-05-11 | 1 | -1/+1 |
| | | | | |||||
* | | | | fixes #4070 | Andreas Rumpf | 2016-05-11 | 1 | -0/+20 |
| | | | | |||||
* | | | | makes tests green again | Andreas Rumpf | 2016-05-11 | 1 | -1/+1 |
| |/ / |/| | | |||||
* | | | make test green again (code was wrong, but not detected by compiler) | Andreas Rumpf | 2016-04-30 | 1 | -1/+1 |
| | | | |||||
* | | | fixes #4084 | Andreas Rumpf | 2016-04-29 | 1 | -0/+16 |
| | | | |||||
* | | | fixes #4124 | Andreas Rumpf | 2016-04-29 | 1 | -0/+25 |
| | | | |||||
* | | | Merge branch 'devel' of github.com:nim-lang/Nim into devel | Andreas Rumpf | 2016-04-19 | 6 | -3/+88 |
|\ \ \ | |||||
| * | | | Added test case | mjendrusch | 2016-04-17 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | Previously offending code | ||||
| * | | | Merge pull request #4050 from yglukhov/tr-varargs | Andreas Rumpf | 2016-04-09 | 1 | -1/+7 |
| |\ \ \ | | | | | | | | | | | Fixed tr pattern matching for varargs | ||||
| | * | | | Fixed tr pattern matching for varargs | Yuriy Glukhov | 2016-04-07 | 1 | -1/+7 |
| | | | | | |||||
| * | | | | Added js closures test. Fixes #3132. | Yuriy Glukhov | 2016-04-07 | 1 | -0/+51 |
| |/ / / | |||||
| * | | | Merge pull request #4049 from arnetheduck/tester-targets | Andreas Rumpf | 2016-04-07 | 2 | -0/+19 |
| |\ \ \ | | | | | | | | | | | tester: allow filtering tests by target | ||||
| | * | | | untaint command line option for parsing | Jacek Sieka | 2016-04-06 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | tester: allow filtering tests by target | Jacek Sieka | 2016-04-05 | 2 | -0/+19 |
| | | | | | |||||
| * | | | | Prevent tester from checking for output diffs for actionRunNoSpec. | Dominik Picheta | 2016-04-05 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | `await x` where x is Fut var now reads after yield. Fixes #3964. | Dominik Picheta | 2016-04-04 | 1 | -1/+1 |
| |/ / / | |||||
* | | | | fixes #4089 | Andreas Rumpf | 2016-04-19 | 1 | -0/+12 |
| | | | | |||||
* | | | | fixes #4097 | Andreas Rumpf | 2016-04-19 | 1 | -0/+17 |
|/ / / |