Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes #310 | Araq | 2013-04-13 | 1 | -2/+2 |
| | |||||
* | fixes #283 | Araq | 2013-04-11 | 1 | -1/+1 |
| | |||||
* | Removes executable bit for text files. | Grzegorz Adam Hankiewicz | 2013-03-16 | 1 | -0/+0 |
| | |||||
* | next steps for object construction expressions | Araq | 2013-03-07 | 1 | -1/+1 |
| | |||||
* | first steps to implement object construction expressions | Araq | 2013-03-07 | 1 | -20/+27 |
| | |||||
* | merged upstream master | Zahary Karadjov | 2013-01-27 | 1 | -80/+36 |
|\ | |||||
| * | implemented 'import except' | Araq | 2012-11-28 | 1 | -67/+35 |
| | | |||||
| * | first steps for the 'export' feature | Araq | 2012-11-28 | 1 | -25/+13 |
| | | |||||
* | | CaaS in-memory caching | Zahary Karadjov | 2012-11-28 | 1 | -3/+6 |
|/ | | | | | removed some redundant filepath params and variables and switched to canonical paths in most places | ||||
* | fixed recently introduced parser bugs | Araq | 2012-11-26 | 1 | -2/+2 |
| | |||||
* | next steps for first class iterators | Araq | 2012-11-26 | 1 | -1/+2 |
| | |||||
* | parser support for 'not nil' annotation | Araq | 2012-11-25 | 1 | -52/+48 |
| | |||||
* | first steps for 'not nil' annotation | Araq | 2012-11-25 | 1 | -23/+52 |
| | |||||
* | 'iterator' as type description | Araq | 2012-11-22 | 1 | -1/+5 |
| | |||||
* | added system.finished for first class iterators | Araq | 2012-11-17 | 1 | -1/+1 |
| | |||||
* | bugfix: prevent endless loop in the parser for 'nimrod check' | Araq | 2012-10-10 | 1 | -3/+8 |
| | |||||
* | syntax compatibility between do blocks and stmt blocks | Zahary Karadjov | 2012-10-04 | 1 | -36/+23 |
| | | | | | | | | | | | | See the section `do notation` in the manual for more info. * nkMacroStmt has been removed Macro statements are now mapped to regular nkCall nodes. The support for additional clauses (such as else, except, of, etc) have been restored - they will now appear as additional arguments for the nkCall node (as nkElse, nkExcept, etc nodes) * fixed some regressions in the `is` operator and semCompiles | ||||
* | implemented case expressions | Zahary Karadjov | 2012-10-03 | 1 | -4/+4 |
| | |||||
* | proc bodies can be expressions with a type | Araq | 2012-09-22 | 1 | -3/+4 |
| | |||||
* | first steps to deprecate 'nil' statement | Araq | 2012-09-09 | 1 | -1/+1 |
| | |||||
* | next steps towards term rewriting macros; simple examples work | Araq | 2012-08-30 | 1 | -14/+15 |
| | |||||
* | first steps towards term rewriting macros | Araq | 2012-08-30 | 1 | -5/+17 |
| | |||||
* | idetools improvements (2) | Araq | 2012-08-03 | 1 | -1/+1 |
| | |||||
* | idetools improvements; preparation of first class iterators; fixes #183 | Araq | 2012-08-02 | 1 | -3/+5 |
| | |||||
* | bugfixes for the symbol mangling; implements #129 | Araq | 2012-07-19 | 1 | -1/+15 |
| | |||||
* | implemented #133 | Araq | 2012-07-19 | 1 | -1/+25 |
| | |||||
* | improvements for 'bind', fixes #166 | Araq | 2012-07-18 | 1 | -5/+4 |
| | |||||
* | preparations for making 'closure' the default calling convention for proc types | Araq | 2012-07-16 | 1 | -1/+1 |
| | |||||
* | ';' as statement separator | Araq | 2012-07-12 | 1 | -6/+7 |
| | |||||
* | fixes #112 | Araq | 2012-07-11 | 1 | -0/+2 |
| | |||||
* | ';' now valid for parameter lists | Araq | 2012-07-11 | 1 | -3/+3 |
| | |||||
* | documented optional indentation for 'case' statements/'case' objects | Araq | 2012-06-22 | 1 | -0/+9 |
| | |||||
* | better support for unsigned integers. | Zahary Karadjov | 2012-06-11 | 1 | -0/+24 |
| | |||||
* | optional indentation for case statements | Zahary Karadjov | 2012-05-23 | 1 | -3/+22 |
| | | | | | - preliminary support for try expressions and case expressions - allow do forms in assignments and return statements | ||||
* | stand-alone except and finally blocks | Zahary Karadjov | 2012-05-23 | 1 | -1/+10 |
| | | | | This is equivalent to the on-error and at-scope-exit operators in other languages | ||||
* | produce errors on proc types with implicit empty param lists. | Zahary Karadjov | 2012-04-20 | 1 | -6/+8 |
| | |||||
* | made built-in types primary expressions to allow infix operators to be used ↵ | Zahary Karadjov | 2012-04-20 | 1 | -50/+47 |
| | | | | with them | ||||
* | grammar: the built-in type classes are now valid expressions | Zahary Karadjov | 2012-04-18 | 1 | -62/+34 |
| | |||||
* | @ is a sigil-like operator | Araq | 2012-04-15 | 1 | -25/+43 |
| | |||||
* | when expressions, proper rendering for nkDo and nkLambda and parser support ↵ | Zahary Karadjov | 2012-04-05 | 1 | -10/+21 |
| | | | | for x.type and x.addr | ||||
* | untyped proc/template/macro params default to expr | Zahary Karadjov | 2012-03-20 | 1 | -1/+1 |
| | |||||
* | implemented 'static'; macros do not work anymore | Araq | 2012-03-15 | 1 | -2/+19 |
| | |||||
* | bugfix: no need for arrows to be new token kinds | Araq | 2012-02-12 | 1 | -4/+6 |
| | |||||
* | `do' keyword in the grammar for lambda blocks | Zahary Karadjov | 2012-02-10 | 1 | -7/+33 |
| | |||||
* | pragma blocks; fixed line information issue with user defined assertions | Araq | 2012-01-17 | 1 | -1/+10 |
| | |||||
* | bugfixes: tests are green again | Araq | 2012-01-13 | 1 | -1/+2 |
| | |||||
* | bugfix: invalid indentation for 'else' is detected; optional indentation for ↵ | Araq | 2012-01-13 | 1 | -1/+6 |
| | | | | 'if' expressions | ||||
* | year 2012 for most copyright headers | Araq | 2012-01-02 | 1 | -1/+1 |
| | |||||
* | bugfix: suggest feature | Araq | 2011-12-22 | 1 | -14/+10 |
| | |||||
* | implemented 'let' statement | Araq | 2011-11-29 | 1 | -1/+1 |
| |