summary refs log tree commit diff stats
path: root/lib/system.nim
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-09-241-0/+3
|\
| * Fixed string concatenation and other bugs in the JS backend. Fixed a small ↵dom962011-09-231-0/+3
| | | | | | | | bug in the IRC module.
* | beginning of a taint mode; type system enhancementsAraq2011-09-241-11/+19
|/
* fixed some newly introduced bugsAraq2011-09-211-2/+1
|
* Moved the parseAST magics to evals.nimZahary Karadjov2011-09-201-2/+7
| | | | | | | | | | | | | | Added string interpolation helper routines in parserutils Added a proof-of-concept string interpolation user-land macros (currently, only as a test case): the interpolated expression could either be transformed to concat("literal string ", $(interpolated), " end") or "literal string $1 end" % [$(interpolated)] Added a very initial definition of Optional[T] generic type A new overload of ParseIdent was added in hope to get around the fact that the old one doesn't work correctly in macros, but the problem persists.
* new actors implementation for nimrod; compiler's generics still not up for ↵Araq2011-08-291-1/+1
| | | | the task though
* more occurences of 'pure' proc pragma fixedAraq2011-08-201-2/+2
|
* added system.slurp for easy embedding of resourcesAraq2011-08-101-0/+6
|
* modifyable results for generics; teventemitter worksAraq2011-08-091-0/+2
|
* json code generation works againAraq2011-08-071-4/+5
|
* preparation for new 'is' operator; breaks bootstrapping again, sorry (use ↵Araq2011-07-311-0/+3
| | | | generated C code)
* shared untraced heap; bugfix: mem corruptions in message passing codeAraq2011-07-181-0/+33
|
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-3/+4
|
* preparations for 0.8.12Araq2011-07-101-1/+1
|
* basic message passing workingAraq2011-07-091-2/+5
|
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-7/+14
|
* improvements to get code size down for programs that don't use GCAraq2011-06-261-20/+39
|
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-2/+1
|
* zipfiles compiles again; added system.shallowCopyAraq2011-06-201-2/+9
|
* readFile raises EIO instead of returning nil; added system.writeFileAraq2011-06-161-3/+8
|
* compiler can emulate thread local variablesAraq2011-06-151-4/+5
|
* fixed system.nim to use the proper getTypeInfo magicAraq2011-06-101-1/+5
|
* Added typeinfo moduledom962011-06-091-0/+1
|
* threads clean up their heapAraq2011-06-041-5/+14
|
* first steps to thread local heapsAraq2011-06-021-7/+23
|
* further progress for multi-threadingAraq2011-05-191-1/+2
|
* thread support: next iterationAraq2011-05-171-3/+3
|
* further steps for thread support; bootstrapping should require unzip C ↵Araq2011-05-161-36/+40
| | | | sources and ./build.sh
* deprecated system.copy: use system.substr insteadAraq2011-05-141-2/+13
|
* got rid of isLiftedAraq2011-05-141-4/+4
|
* debug build works again; sorryAraq2011-05-091-9/+11
|
* threadvar alternativeAraq2011-05-091-7/+9
|
* newStringOfCap implemented and used to optimize some procsAraq2011-05-081-1/+7
|
* cleaned up the tests; fixes #30; fixes #26Araq2011-05-011-1/+1
|
* slight change in the spec of unary '..'Araq2011-04-231-3/+1
|
* slice support in system.nim; syntactic sugar for tables; cleanup of ↵Araq2011-04-231-3/+92
| | | | grammar/parser
* slices are first class citizensAraq2011-04-221-0/+27
|
* hashtables: 1st version; parseutils additionsAraq2011-04-181-3/+3
|
* := templatable; lexer improvementsAraq2011-04-171-2/+4
|
* p[] instead of p^Araq2011-04-111-3/+3
|
* added another system.open; bugfix: koch clean may not break .git dirs anymoreAraq2011-04-031-7/+11
|
* bugfix: GC more forgivingAraq2011-04-031-4/+5
|
* ugh, maybe broke gitAraq2011-04-011-11/+58
|
* added 'reset' magic procAraq2011-03-251-2/+1
|
* bugfix: type converter that converts to bool in 'if' contextAraq2011-03-251-0/+5
|
* linearScanEnd pragma; string case statement optimizationAraq2011-03-141-2/+2
|
* fixes #20Araq2011-03-121-1/+0
|
* distinction between re.replace and re.replacef; speed improvements for re moduleAraq2011-03-061-6/+3
|
* various bugfixes for generics; added generic sort procAraq2011-03-031-7/+9
|
* basic continue after error works; interactive mode more usefulAraq2011-02-131-9/+6
|