Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bugfix: object constructor doesn't allow 'distinct' types | Araq | 2014-02-01 | 1 | -2/+2 |
| | |||||
* | fixes #838 | Araq | 2014-01-25 | 2 | -2/+4 |
| | |||||
* | disable internalError so that nimbuild compiles again | Araq | 2014-01-25 | 2 | -1/+6 |
| | |||||
* | more efficient calls for closure iterators | Araq | 2014-01-25 | 1 | -3/+5 |
| | |||||
* | fixes a minor parser bug | Araq | 2014-01-25 | 1 | -2/+1 |
| | |||||
* | renderer knows about nkStaticTy and nkTypeClassTy | Araq | 2014-01-23 | 1 | -0/+23 |
| | |||||
* | typeClasses now documented in grammar.txt | Araq | 2014-01-23 | 1 | -0/+4 |
| | |||||
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into devel | Araq | 2014-01-23 | 1 | -57/+67 |
|\ | |||||
| * | nest PreMain inside NimMain for easier consumption of static libraries ↵ | Zahary Karadjov | 2014-01-23 | 1 | -57/+67 |
| | | | | | | | | | | | | developed in Nimrod fixes many uses of $N instead of $n for new lines that don't affect #line directives | ||||
* | | small code cleanups | Araq | 2014-01-23 | 2 | -4/+1 |
| | | |||||
* | | closure iterators work | Araq | 2014-01-23 | 1 | -15/+39 |
| | | |||||
* | | closure iterators almost work | Araq | 2014-01-23 | 2 | -191/+189 |
| | | |||||
* | | next steps for closure iterators | Araq | 2014-01-22 | 7 | -53/+107 |
|/ | |||||
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into devel | Araq | 2014-01-20 | 1 | -1/+1 |
|\ | |||||
| * | fix the segfault in #827 | Zahary Karadjov | 2014-01-20 | 1 | -1/+1 |
| | | |||||
* | | parser support anon iterators | Araq | 2014-01-20 | 2 | -4/+9 |
| | | |||||
* | | updated grammar.txt | Araq | 2014-01-20 | 1 | -2/+2 |
| | | |||||
* | | command syntax is allowed in expressions | Araq | 2014-01-20 | 1 | -44/+74 |
|/ | |||||
* | compiler warns when you use GC'ed memory and '--gc:none' | Araq | 2014-01-19 | 2 | -2/+19 |
| | |||||
* | 'nil' as a statement is deprecated, use an empty 'discard' instead | Araq | 2014-01-19 | 39 | -128/+131 |
| | |||||
* | it's the year 2014 | Araq | 2014-01-19 | 7 | -20/+20 |
| | |||||
* | 'inject' for the new symbol binding rules in templates | Araq | 2014-01-19 | 1 | -7/+19 |
| | |||||
* | resolved conflicts with master | Araq | 2014-01-18 | 4 | -595/+8 |
|\ | |||||
| * | bugfix: doc generation for actors.nim works again | Araq | 2014-01-13 | 1 | -4/+5 |
| | | |||||
| * | Removes generated .dot file uploaded by mistake. | Grzegorz Adam Hankiewicz | 2013-12-30 | 1 | -591/+0 |
| | | |||||
| * | Fixes #594 | Dominik Picheta | 2013-12-28 | 1 | -1/+1 |
| | | | | | | | | | | This was already partially fixed, ``expandTilde`` was the missing piece from perfection. | ||||
| * | Added --noBabelPath override. | Dominik Picheta | 2013-12-25 | 2 | -1/+5 |
| | | |||||
* | | unittest module works again | Araq | 2014-01-18 | 1 | -2/+11 |
| | | |||||
* | | better tester | Araq | 2014-01-17 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'devel' of https://github.com/Araq/Nimrod into devel | Araq | 2014-01-17 | 5 | -390/+463 |
|\ \ | |||||
| * \ | Merge pull request #814 from discoloda/devel | Andreas Rumpf | 2014-01-14 | 5 | -390/+463 |
| |\ \ | | | | | | | | | Many small improvements to c2nim | ||||
| | * | | Applied Araq's suggestions for c2nim | Vincent Burns | 2014-01-14 | 2 | -9/+11 |
| | | | | |||||
| | * | | removed hack for return statement | Vincent Burns | 2014-01-14 | 2 | -9/+14 |
| | | | | |||||
| | * | | Slightly better type parsing for parameters and cast expressions | Vincent Burns | 2014-01-14 | 2 | -7/+46 |
| | | | | |||||
| | * | | Fix for expression parsing, 'new' is a valid C symbol | Vincent Burns | 2014-01-13 | 1 | -6/+9 |
| | | | | |||||
| | * | | Fix for some comments during if statements | Vincent Burns | 2014-01-13 | 3 | -1/+25 |
| | | | | | | | | | | | | | | | | added test files | ||||
| | * | | Support more proper do..while statements | Vincent Burns | 2014-01-13 | 1 | -9/+39 |
| | | | | |||||
| | * | | for statements support comma expressions | Vincent Burns | 2014-01-13 | 1 | -2/+4 |
| | | | | |||||
| | * | | New expression parser | Vincent Burns | 2014-01-12 | 1 | -350/+274 |
| | | | | | | | | | | | | | | | | tests pass | ||||
| | * | | Properly lex floating constants | Vincent Burns | 2014-01-12 | 1 | -5/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | digit-sequence? '.' digit-sequence exponent-part? digit-sequence '.' exponent-part? exponent-part: [eE] [+-]? digit-sequence | ||||
| | * | | Lex '\xHH' character constants | Vincent Burns | 2014-01-12 | 1 | -0/+17 |
| | | | | |||||
| | * | | Added spliceHeader option to c2nim | Vincent Burns | 2014-01-12 | 1 | -5/+17 |
| | | | | | | | | | | | | | | | | parse a header file first, then the source. completing a c 'module' | ||||
* | | | | better html generator for the tester; fixes some VM bugs | Araq | 2014-01-17 | 5 | -27/+156 |
|/ / / | |||||
* | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into devel | Araq | 2014-01-13 | 31 | -709/+1056 |
|\| | | |||||
| * | | fix bootstrapping on windows | Zahary Karadjov | 2014-01-06 | 1 | -1/+3 |
| | | | |||||
| * | | progress towards fixing tgenericshardcases | Zahary Karadjov | 2014-01-06 | 7 | -33/+130 |
| | | | |||||
| * | | introduce tyFromExpr; fixes #618 | Zahary Karadjov | 2014-01-04 | 10 | -27/+61 |
| | | | |||||
| * | | fixed #597 | Zahary Karadjov | 2014-01-02 | 4 | -28/+59 |
| | | | |||||
| * | | clean-up some obsolete code; close #602 | Zahary Karadjov | 2013-12-31 | 5 | -205/+59 |
| | | | |||||
| * | | Templates will pick the candidate in the nearest scope when symbols are mixed-in | Zahary Karadjov | 2013-12-31 | 6 | -16/+32 |
| | | |