Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 'return' for first class iterators | Araq | 2012-11-26 | 1 | -14/+16 |
| | |||||
* | added system.finished for first class iterators | Araq | 2012-11-17 | 1 | -0/+2 |
| | |||||
* | AST quasi-quoting for macros | Zahary Karadjov | 2012-11-11 | 1 | -12/+88 |
| | |||||
* | Improved support for nkSymChoices in type coercions | Zahary Karadjov | 2012-10-15 | 1 | -39/+59 |
| | | | | | | | | | | For example, this allows you to pick up a proc with a specific signature from an overload set. bugfix: nimrod generated invalid code when a RVO function had a single compile-time param bugfix: nkHiddenDerefs were not neutralised properly for indirect proc calls | ||||
* | bugfix: tests should be green again | Araq | 2012-10-13 | 1 | -4/+3 |
| | |||||
* | bugfix: threads should work again; fixes #220 | Araq | 2012-10-12 | 1 | -1/+2 |
| | |||||
* | syntax compatibility between do blocks and stmt blocks | Zahary Karadjov | 2012-10-04 | 1 | -61/+24 |
| | | | | | | | | | | | | 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 | ||||
* | experimental support for querying the type of expressions within macros | Zahary Karadjov | 2012-10-03 | 1 | -8/+11 |
| | | | | normalised the line endings of macros.nim (minor edits otherwise) | ||||
* | the `is` operator now works with type classes and type variables | Zahary Karadjov | 2012-10-03 | 1 | -9/+20 |
| | | | | | bugfixes: the DLL tests were failing on Mac OS X, due to an incorrect DynlibFormat | ||||
* | implemented case expressions | Zahary Karadjov | 2012-10-03 | 1 | -1/+54 |
| | |||||
* | table constructors now mimic more closely the syntax of case... of... | Zahary Karadjov | 2012-10-03 | 1 | -5/+14 |
| | | | | see the safePrintF example in the manual as a motivation | ||||
* | implemented return type inference | Zahary Karadjov | 2012-10-03 | 1 | -2/+14 |
| | | | | | | Other fixes: * bind once is now the default for type classes as documented in the manual * fixes an issue in template overloading (erroneous ambiguity when different typedesc params were used) | ||||
* | fixes ttypeselectors | Zahary Karadjov | 2012-09-28 | 1 | -5/+1 |
| | |||||
* | improved support for typedesc values | Zahary Karadjov | 2012-09-25 | 1 | -1/+4 |
| | | | | | * can be stored in constants and variables (including in containers like sequences) * can be passed to and returned from macros | ||||
* | bugfix: proc bodies as expr | Araq | 2012-09-23 | 1 | -1/+4 |
| | |||||
* | proc bodies can be expressions with a type | Araq | 2012-09-22 | 1 | -4/+24 |
| | |||||
* | fixes #194 | Araq | 2012-09-20 | 1 | -0/+2 |
| | |||||
* | bugfix: 'nimrod i' works again | Araq | 2012-09-18 | 1 | -4/+3 |
| | |||||
* | made tests green again | Araq | 2012-09-18 | 1 | -1/+1 |
| | |||||
* | some support for passing blocks to overloaded templates/macros | Araq | 2012-09-17 | 1 | -5/+27 |
| | |||||
* | bugfix: echo vs debugEcho | Araq | 2012-09-13 | 1 | -0/+3 |
| | |||||
* | semExpr/semStmt merged | Araq | 2012-09-13 | 1 | -6/+106 |
| | |||||
* | made some tests green | Araq | 2012-09-12 | 1 | -1/+1 |
| | |||||
* | first steps for overloading support of passing blocks; bugfix: test results ↵ | Araq | 2012-09-11 | 1 | -17/+27 |
| | | | | of 'compile' are not overwritten | ||||
* | term rewriting improvements | Araq | 2012-09-08 | 1 | -44/+1 |
| | |||||
* | term rewriting macros fully implemented; still buggy | Araq | 2012-09-03 | 1 | -11/+18 |
| | |||||
* | first steps towards term rewriting macros | Araq | 2012-08-30 | 1 | -0/+1 |
| | |||||
* | parameter passing works the same for macros and templates; use callsite ↵ | Araq | 2012-08-28 | 1 | -7/+8 |
| | | | | magic to access the invokation AST | ||||
* | distinguish properly between nkOpen and nkClosedSymChoice | Araq | 2012-08-26 | 1 | -8/+12 |
| | |||||
* | bindSym suffices; no 'bind' for macros anymore | Araq | 2012-08-25 | 1 | -1/+15 |
| | |||||
* | next steps to hygienic templates | Araq | 2012-08-20 | 1 | -1/+2 |
| | |||||
* | first steps to make templates hygienic | Araq | 2012-08-20 | 1 | -2/+4 |
| | |||||
* | next steps for tyVarargs/tyOpenArray split | Araq | 2012-08-14 | 1 | -3/+5 |
| | |||||
* | more bugfixes for closures | Araq | 2012-08-14 | 1 | -2/+1 |
| | |||||
* | made tests green again | Araq | 2012-08-14 | 1 | -1/+3 |
| | |||||
* | top level closures should work; transf is not a pass anymore; next steps for ↵ | Araq | 2012-08-13 | 1 | -11/+6 |
| | | | | first class iterator support | ||||
* | idetools: '--def' now works in 'x.f' | Araq | 2012-08-05 | 1 | -3/+3 |
| | |||||
* | idetools: 'usages' and 'def' should work now; documented js backend | Araq | 2012-08-05 | 1 | -28/+38 |
| | |||||
* | idetools: don't suggest module names or not visible object fields | Araq | 2012-08-03 | 1 | -4/+2 |
| | |||||
* | idetools improvements | Araq | 2012-08-03 | 1 | -0/+1 |
| | |||||
* | made compiler more robust for idetools; implemented idetools.usages | Araq | 2012-07-30 | 1 | -7/+15 |
| | |||||
* | more improvements for idetools | Araq | 2012-07-30 | 1 | -3/+3 |
| | |||||
* | better error handling for better idetools support | Araq | 2012-07-29 | 1 | -71/+93 |
| | |||||
* | better overloading capabilities for 'shallowCopy'; little bugfix for ↵ | Araq | 2012-07-29 | 1 | -12/+13 |
| | | | | 'system.compiles' | ||||
* | improvements for idetools; system.compiles improved | Araq | 2012-07-29 | 1 | -0/+14 |
| | |||||
* | fixes #178 | Araq | 2012-07-28 | 1 | -5/+10 |
| | |||||
* | implements #173 | Araq | 2012-07-28 | 1 | -3/+13 |
| | |||||
* | next steps for closure consistency; fixes #176 | Araq | 2012-07-25 | 1 | -1/+1 |
| | |||||
* | optimizations for system.compiles | Araq | 2012-07-20 | 1 | -8/+12 |
| | |||||
* | added system.compiles | Araq | 2012-07-20 | 1 | -0/+30 |
| |