summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-199-72/+180
|\
| * fixes #106Zahary Karadjov2012-10-163-13/+25
| |
| * Improved support for nkSymChoices in type coercionsZahary Karadjov2012-10-155-51/+147
| | | | | | | | | | | | | | | | | | | | 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
| * Merge pull request #225 from fowlmouth/masterAraq2012-10-141-8/+8
| |\ | | | | | | opengl update
| | * make glU* types unsigned, *int types are in32Billingsly Wetherfordshire2012-10-141-8/+8
| |/
* / fixed a serious code generation bug leading to wrong RTTIAraq2012-10-197-29/+76
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-146-69/+85
|\
| * fixes #211Zahary Karadjov2012-10-135-9/+25
| | | | | | | | transf: fix a clang compilation error when lineDir:on is used
| * Merge pull request #222 from fowlmouth/patch-2Araq2012-10-131-60/+60
| |\ | | | | | | opengl fix
| | * opengl fixBillingsly Wetherfordshire2012-10-121-60/+60
| | |
* | | bugfix: evalTemplateArgsAraq2012-10-141-1/+1
|/ /
* | Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-131-0/+34
|\ \
| * \ Merge pull request #221 from exhu/casAraq2012-10-121-0/+34
| |\ \ | | | | | | | | Added CAS to system/atomics.nim
| | * | Added CAS to system/atomics.nimYury Benesh2012-10-131-0/+34
| | | |
* | | | fixes #217Araq2012-10-133-7/+13
|/ / /
* | / bugfix: tests should be green againAraq2012-10-132-5/+13
| |/ |/|
* | bugfix: threads should work again; fixes #220Araq2012-10-123-5/+34
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-122-9/+129
|\
| * Wrapped GtkInfoBar, GtkComboBox and GtkComboBoxTextDominik Picheta2012-10-111-0/+122
| |
| * add static assertions in the generated code about platform-related assumptionsZahary Karadjov2012-10-111-9/+7
| |
* | bugfix: fixed broken expr proc bodiesAraq2012-10-122-3/+6
| |
* | allow 'mixin' in genericsAraq2012-10-126-80/+84
|/
* bugfix: leak in db_sqlite.GetValueAraq2012-10-101-3/+5
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-102-17/+58
|\
| * Fixes segfault in db_sqlite. Fixes problems with times.format.Dominik Picheta2012-10-072-17/+58
| |
* | bugfix: prevent endless loop in the parser for 'nimrod check'Araq2012-10-101-3/+8
| |
* | first version of a memory profilerAraq2012-10-108-56/+117
| |
* | better extension loading for the OpenGL wrapperAraq2012-10-096-10/+40
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-063-17/+3
|\
| * bugfix: closures as default param valuesZahary Karadjov2012-10-063-17/+3
| |
* | attempt to fix #183Araq2012-10-063-3/+16
|/
* bugfix: gensym in rofilesAraq2012-10-051-1/+2
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-0522-175/+146
|\
| * fixes #120Zahary Karadjov2012-10-042-7/+4
| |
| * syntax compatibility between do blocks and stmt blocksZahary Karadjov2012-10-0421-168/+142
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | code cleanup of caasAraq2012-10-052-45/+8
|/
* added titer7 testAraq2012-10-041-0/+57
|
* fixes #213Araq2012-10-041-2/+2
|
* next steps for 'compiler as a service'Araq2012-10-034-22/+24
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-10-0325-499/+829
|\
| * rebuilt the C sourcesZahary Karadjov2012-10-030-0/+0
| |
| * experimental support for querying the type of expressions within macrosZahary Karadjov2012-10-035-346/+371
| | | | | | | | normalised the line endings of macros.nim (minor edits otherwise)
| * the `is` operator now works with type classes and type variablesZahary Karadjov2012-10-0313-87/+161
| | | | | | | | | | bugfixes: the DLL tests were failing on Mac OS X, due to an incorrect DynlibFormat
| * implemented case expressionsZahary Karadjov2012-10-038-25/+138
| |
| * table constructors now mimic more closely the syntax of case... of...Zahary Karadjov2012-10-033-7/+47
| | | | | | | | see the safePrintF example in the manual as a motivation
| * always print stack traces on errors in debug builds of nimrodZahary Karadjov2012-10-031-7/+10
| | | | | | | | | | I've been using this for a while and it's really more convenient than hunting the message in msgs.nim and grepping the error code in the whole project
| * bugfix: allow tuple constructors in generic codeZahary Karadjov2012-10-032-0/+7
| |
| * implemented return type inferenceZahary Karadjov2012-10-039-36/+104
| | | | | | | | | | | | 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)
* | first steps for compiler as a serviceAraq2012-10-0311-40/+142
|/
* website improvementsAraq2012-09-291-12/+11
|