Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | adds an option to interleave the generated code with snippets from the ↵ | Zahary Karadjov | 2012-12-02 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | original source Lines from the original source are outputted as comments next to line directives. Hopefully, this will make debugging codegen problems easier. Other changes: The frame setup code now uses a single-line C macro. My motivation was to reduce the noise in the generated output and make it easier to step over the boiler-plate code, but counter-intuitively this also improved the overall compilation speed a little bit so I applied the same treatment to line tracking too (this reduces the size of the generated files and the explanation is that probably the I/O overhead dominates the macro expansion costs). | ||||
* | caas is now drivable through stdin | Zahary Karadjov | 2012-11-28 | 1 | -0/+1 |
| | | | | | * added idetools --eval * streams.readLine recognises and applies the backspace character | ||||
* | 'return' for first class iterators | Araq | 2012-11-26 | 1 | -0/+25 |
| | |||||
* | first steps for 'not nil' annotation | Araq | 2012-11-25 | 1 | -2/+3 |
| | |||||
* | 'iterator' as type description | Araq | 2012-11-22 | 1 | -2/+4 |
| | |||||
* | made 'shared' a keyword | Araq | 2012-11-22 | 1 | -1/+1 |
| | |||||
* | doc2 improvements; small lexer bugfix: backslashes in comments | Araq | 2012-11-20 | 1 | -0/+1 |
| | |||||
* | fixes #250 | Araq | 2012-11-19 | 1 | -0/+32 |
| | |||||
* | implemented 'tags' pragma | Araq | 2012-11-11 | 1 | -5/+1 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2012-11-08 | 1 | -4/+87 |
|\ | |||||
| * | Updates docs about exceptions being on the stack/heap. | Grzegorz Adam Hankiewicz | 2012-11-08 | 1 | -1/+2 |
| | | |||||
| * | Adds to the tutorial some info about exception tracking. | Grzegorz Adam Hankiewicz | 2012-11-08 | 1 | -3/+85 |
| | | |||||
* | | documented 'mixin' declaration | Araq | 2012-11-08 | 1 | -4/+30 |
|/ | |||||
* | documented Nimrod's effects system | Araq | 2012-11-06 | 1 | -7/+101 |
| | |||||
* | system.onRaise improvements | Araq | 2012-11-05 | 1 | -110/+126 |
| | |||||
* | added system.onRaise to support a condition system | Araq | 2012-11-05 | 1 | -23/+42 |
| | |||||
* | fixes #230; fixes #227 | Araq | 2012-10-19 | 1 | -8/+1 |
| | |||||
* | first version of a memory profiler | Araq | 2012-10-10 | 2 | -0/+17 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2012-10-03 | 1 | -18/+50 |
|\ | |||||
| * | implemented case expressions | Zahary Karadjov | 2012-10-03 | 1 | -8/+29 |
| | | |||||
| * | table constructors now mimic more closely the syntax of case... of... | Zahary Karadjov | 2012-10-03 | 1 | -2/+2 |
| | | | | | | | | see the safePrintF example in the manual as a motivation | ||||
| * | implemented return type inference | Zahary Karadjov | 2012-10-03 | 1 | -8/+19 |
| | | | | | | | | | | | | 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 service | Araq | 2012-10-03 | 3 | -6/+9 |
|/ | |||||
* | missing documentation added to the manual | Zahary Karadjov | 2012-09-27 | 1 | -38/+248 |
| | | | | | | | | | | documented: * closures and the do notation * type classes * return type inference * typedesc parameters and values * destructor pragma * fixed a number of typos | ||||
* | normalized the line endings in the manual | Zahary Karadjov | 2012-09-27 | 1 | -3685/+3685 |
| | |||||
* | 'mixin' and 'interface' are now keywords | Araq | 2012-09-22 | 1 | -2/+2 |
| | |||||
* | profiler improvements | Araq | 2012-09-17 | 1 | -3/+2 |
| | |||||
* | profiler documentation | Araq | 2012-09-15 | 2 | -0/+183 |
| | |||||
* | bugfix: echo vs debugEcho | Araq | 2012-09-13 | 1 | -1/+1 |
| | |||||
* | splitted echo into echo/debugEcho | Araq | 2012-09-13 | 1 | -13/+0 |
| | |||||
* | small bugfixes; reactivated tests/compile | Araq | 2012-09-11 | 1 | -2/+2 |
| | |||||
* | first steps for overloading support of passing blocks; bugfix: test results ↵ | Araq | 2012-09-11 | 1 | -1/+1 |
| | | | | of 'compile' are not overwritten | ||||
* | tr macros now documented | Araq | 2012-09-10 | 4 | -3/+305 |
| | |||||
* | implemented 'pure' enums | Araq | 2012-09-08 | 1 | -0/+13 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2012-09-03 | 1 | -0/+3 |
|\ | |||||
| * | Added fsmonitor module. | Dominik Picheta | 2012-09-02 | 1 | -0/+3 |
| | | |||||
* | | term rewriting macros fully implemented; still buggy | Araq | 2012-09-03 | 1 | -3/+3 |
|/ | |||||
* | next steps towards term rewriting macros; simple examples work | Araq | 2012-08-30 | 1 | -0/+1 |
| | |||||
* | parameter passing works the same for macros and templates; use callsite ↵ | Araq | 2012-08-28 | 2 | -12/+15 |
| | | | | magic to access the invokation AST | ||||
* | distinguish properly between nkOpen and nkClosedSymChoice | Araq | 2012-08-26 | 1 | -0/+13 |
| | |||||
* | bindSym suffices; no 'bind' for macros anymore | Araq | 2012-08-25 | 1 | -11/+6 |
| | |||||
* | objects with no ancestor are not implicitely final | Araq | 2012-08-24 | 2 | -6/+13 |
| | |||||
* | documented bind in macros | Araq | 2012-08-24 | 1 | -0/+53 |
| | |||||
* | implemented backslash for continuation comments | Araq | 2012-08-23 | 2 | -0/+21 |
| | |||||
* | documented hygienic templates; made tests green; fixed system.clamp | Araq | 2012-08-22 | 2 | -4/+59 |
| | |||||
* | first steps to make templates hygienic | Araq | 2012-08-20 | 1 | -2/+2 |
| | |||||
* | bycopy/byref for object/tuple types | Araq | 2012-08-16 | 1 | -1/+20 |
| | |||||
* | openarray/varargs split; breaks bootstrapping | Araq | 2012-08-16 | 2 | -25/+62 |
| | |||||
* | idetools: 'usages' and 'def' should work now; documented js backend | Araq | 2012-08-05 | 1 | -0/+37 |
| | |||||
* | fixed some typos in the documentation | Araq | 2012-07-31 | 2 | -8/+9 |
| |