Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes #3359 | Araq | 2015-09-23 | 1 | -3/+2 |
| | |||||
* | compiler: Trim .nim files trailing whitespace | Adam Strzelecki | 2015-09-04 | 1 | -3/+3 |
| | | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} + | ||||
* | Disable the new generic params handling for immediate template and macros | Zahary Karadjov | 2015-08-02 | 1 | -1/+11 |
| | | | | | | | | | | | | | | Since immediate templates are not subjected to the standard sigmatching algorithm, they will have a number of deficiencies when it comes to generic params: Type dependencies between the parameters won't be honoured and the bound generic symbols won't be resolvable within their bodies. We could try to fix this, but it may be wiser to just deprecate immediate templates and macros now that we have working untyped parameters. Disabling the new features is admittedly not the greatest way to handle this situations as it introduces inconsistency in the language, but at least it makes the code backwards-compatible with the previous version of the compiler instead of triggering more serious problems. | ||||
* | fix #1858 again; restores the support for static macro params | Zahary Karadjov | 2015-08-02 | 1 | -16/+34 |
| | |||||
* | fixes #3044 | Araq | 2015-07-02 | 1 | -1/+3 |
| | |||||
* | fixes #1940; code breakage! stricter template evaluation | Araq | 2015-03-07 | 1 | -5/+5 |
| | |||||
* | nimsuggest improvements | Araq | 2015-01-30 | 1 | -1/+1 |
| | |||||
* | fixes #1915 | Araq | 2015-01-12 | 1 | -1/+1 |
| | |||||
* | Revert 5e4ae8d | Dustin Lacewell | 2015-01-07 | 1 | -33/+17 |
| | |||||
* | fix #1858; Add support for generic templates and macros | Zahary Karadjov | 2015-01-05 | 1 | -17/+33 |
| | | | | | | | | | Implementation notes: Just after overload resolution, the resolved generic params will be added to the call expression to be later processed in evalTemplate and evalMacroCall. These procs have been modified to handle the increased number of parameters, but one remaining issue is that immediate templates and macros don't go through the same process. The next commit will outlaw the use of generic parameters with such macros. | ||||
* | Nimrod renamed to Nim | Araq | 2014-08-28 | 1 | -1/+1 |
| | |||||
* | case consistency: next steps | Araq | 2013-12-29 | 1 | -1/+1 |
| | |||||
* | case consistency part 4 | Araq | 2013-12-27 | 1 | -6/+6 |
| | |||||
* | attempt to improve line information for '!=' etc. templates | Araq | 2013-10-15 | 1 | -32/+13 |
| | |||||
* | bugfix: evalTemplateArgs | Araq | 2012-10-14 | 1 | -1/+1 |
| | |||||
* | term rewriting macros fully implemented; still buggy | Araq | 2012-09-03 | 1 | -10/+52 |
| | |||||
* | first steps to make templates hygienic | Araq | 2012-08-20 | 1 | -0/+83 |