Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | manual: cstring finally properly documented | Araq | 2011-11-25 | 1 | -0/+52 |
| | |||||
* | new pragma: 'noinit' | Araq | 2011-11-25 | 6 | -17/+34 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2011-11-25 | 1 | -4/+7 |
|\ | |||||
| * | Merge pull request #68 from hametsu/master | Araq | 2011-11-25 | 1 | -4/+7 |
| |\ | | | | | | | i found something to be fixed at .gitignore. | ||||
| | * | auto generated files and dirs to ignore | takano32 | 2011-11-25 | 1 | -0/+4 |
| | | | |||||
| | * | `rod' directory was renamed to `compiler' | takano32 | 2011-11-25 | 1 | -4/+3 |
| |/ | |||||
* / | todo changes | Araq | 2011-11-25 | 1 | -1/+3 |
|/ | |||||
* | fixes #60 | Araq | 2011-11-25 | 1 | -2/+2 |
| | |||||
* | 'export' is now a keyword | Araq | 2011-11-24 | 4 | -6/+9 |
| | |||||
* | C codegen: generate nimKeepAlive calls at strategic places to keep the C ↵ | Araq | 2011-11-24 | 6 | -174/+256 |
| | | | | compiler from optimizing away all stack roots | ||||
* | fixes #65 | Araq | 2011-11-22 | 1 | -1/+1 |
| | |||||
* | unused constants are optimized away | Araq | 2011-11-22 | 4 | -39/+47 |
| | |||||
* | attempt to fix tunidecode test; GC cares for seq->openArray conversions | Araq | 2011-11-21 | 5 | -947/+982 |
| | |||||
* | proper error message when attempting to eval C'imported procs | Araq | 2011-11-20 | 3 | -63/+53 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2011-11-20 | 3 | -7/+8 |
|\ | |||||
| * | Fixed test suite on windows | Dominik Picheta | 2011-11-19 | 3 | -7/+8 |
| | | |||||
* | | bugfix: 'when' sections in generic objects now work, so TThread[void] compiles | Araq | 2011-11-20 | 13 | -77/+153 |
|/ | |||||
* | got rid of 'accept' dir in the tests | Araq | 2011-11-19 | 264 | -7/+5 |
| | |||||
* | fixed some tests | Araq | 2011-11-19 | 15 | -128/+135 |
| | |||||
* | tester: threading tests added | Araq | 2011-11-19 | 9 | -29/+96 |
| | |||||
* | bugfix: fixed memory leaks in osproc module | Araq | 2011-11-18 | 7 | -127/+185 |
| | |||||
* | new osproc implementation may work with mac os x | Araq | 2011-11-18 | 3 | -7/+9 |
| | |||||
* | macros and templates can be expanded anywhere where a type is expected. | Zahary Karadjov | 2011-11-18 | 6 | -35/+118 |
| | | | | | This allows for various type selection algorithms to be implemented. See tests / accept / compile / ttypeselectors.nim for examples. | ||||
* | tester compiles in taint mode again | Araq | 2011-11-18 | 1 | -1/+1 |
| | |||||
* | cgen: no type canon for integral types; osproc use posix_spawn instead of ↵ | Araq | 2011-11-18 | 9 | -57/+152 |
| | | | | fork&exec | ||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2011-11-15 | 1 | -2/+53 |
|\ | |||||
| * | Added new features to the ftpclient module. | dom96 | 2011-11-15 | 1 | -2/+53 |
| | | |||||
* | | bugfixes: objects still invalid for constants; fixed a typo concerning ↵ | Araq | 2011-11-15 | 8 | -15/+52 |
|/ | | | | 'high' in eval context | ||||
* | new FTPClient module compiles in taint mode | Araq | 2011-11-15 | 1 | -21/+34 |
| | |||||
* | compilation cache: improvement: switching from codegen to 'check only' does ↵ | Araq | 2011-11-15 | 1 | -1/+18 |
| | | | | not trigger a recompilation | ||||
* | bugfix: s[1..n] = @[] produced wrong C code | Araq | 2011-11-14 | 4 | -15/+33 |
| | |||||
* | tester uses same layout as nimbuild | Araq | 2011-11-12 | 5 | -11/+281 |
| | |||||
* | better streams implemenation; fixes #63 | Araq | 2011-11-12 | 5 | -45/+112 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2011-11-12 | 7 | -14/+78 |
|\ | |||||
| * | fixing bootstrapping when stack frames are enabled | Zahary Karadjov | 2011-11-10 | 1 | -28/+28 |
| | | |||||
| * | when running unit tests, the tester will print only failures using colorless ↵ | Zahary Karadjov | 2011-11-10 | 3 | -8/+27 |
| | | | | | | | | output (this should be better for nimbuild) | ||||
| * | Added system.program_results for controlling the exit code of the program ↵ | Zahary Karadjov | 2011-11-10 | 5 | -13/+58 |
| | | | | | | | | | | | | | | | | under normal circumstances Implemented operators like +=, -=, etc for ordinals, floats and string Programs using the UnitTest module will now report the number of failed tests as the exit code of test runs (0 for successful run) | ||||
* | | added another test case | Araq | 2011-11-12 | 3 | -2/+13 |
|/ | |||||
* | GC tests now finally part of testsuite | Araq | 2011-11-10 | 11 | -672/+79 |
| | |||||
* | operator precedence changed: assignment like operators are supported; ↵ | Araq | 2011-11-09 | 7 | -26/+64 |
| | | | | escaping of operators with \ is supported | ||||
* | bugfixes for the testsuite | Araq | 2011-11-08 | 2 | -15/+18 |
| | |||||
* | bugfixes for the tester; the tester now supports running of single tests | Araq | 2011-11-08 | 10 | -56/+76 |
| | |||||
* | tester checks exitcode; osproc additions; DLL fixes; taint mode fixes | Araq | 2011-11-07 | 13 | -81/+210 |
| | |||||
* | better exception behavior for os.removeFile and os.removeDir | Araq | 2011-11-06 | 3 | -11/+13 |
| | |||||
* | compilation cache: fixed recently introduced bug (lazy loading of bodies) | Araq | 2011-11-06 | 7 | -19/+63 |
| | |||||
* | memfiles now uses winlean; changed the interface to raise EOS | Araq | 2011-11-05 | 8 | -70/+123 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2011-11-05 | 6 | -72/+252 |
|\ | |||||
| * | logical typo in the previous commit | Zahary Karadjov | 2011-11-04 | 1 | -3/+3 |
| | | |||||
| * | new kind of AST printer that prints indented trees | Zahary Karadjov | 2011-11-04 | 4 | -42/+76 |
| | | | | | | | | | | AST-to-string conversion procs renamed to repr, treeRepr and lispRepr for better consistency new dumpTree and dumpLisp procs for quick AST inspection of arbitrary nimrod blocks | ||||
| * | memory-mapped files for posix and windows | Zahary Karadjov | 2011-11-04 | 2 | -30/+176 |
| | |