summary refs log tree commit diff stats
path: root/lib/core
Commit message (Collapse)AuthorAgeFilesLines
* fixed some recently introduced compilation errors in the standard libraryZahary Karadjov2011-12-131-1/+1
|
* implemented 'let' statementAraq2011-11-291-2/+2
|
* fixes #60Araq2011-11-251-2/+2
|
* new kind of AST printer that prints indented treesZahary Karadjov2011-11-041-36/+73
| | | | | 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
* compilation cache: tests now part of test suiteAraq2011-10-271-0/+4
|
* 'bind' as a declarative statementAraq2011-10-101-1/+3
|
* new syntactic construct: a{i}Araq2011-10-081-1/+1
|
* Cleaned up the circular dependecies and remaining issuesZahary Karadjov2011-10-071-1/+1
| | | | Changed: The []= operator for strings and sequences is now capable of splicing
* Basic unit testing facilities (suites, fixtures, cases)Zahary Karadjov2011-10-071-7/+9
| | | | | | | | Added: PNimrodNode.lineinfo for better error messages from macros Added: seq.splice For easier use from templates and macros, except stament now supports the list of exception types to be supplied in nkBraket node (array literal).
* bugfix: internal error in evalFieldAccess; parseutils.interpolatedFragments ↵Araq2011-09-261-6/+6
| | | | optimized; tstringinterp.nim now works
* got rid of akPureObjectAraq2011-09-241-5/+4
|
* beginning of a taint mode; type system enhancementsAraq2011-09-241-11/+17
|
* Initial implementation of the parseExpr, parseStmt, getAst macro routines:Zahary Karadjov2011-09-201-2/+16
| | | | | | | | | | | | | | | | | | proc parseExpr*(s: string) : expr {.magic: "ParseExprToAst".} ## Compiles the passed string to its AST representation ## Expects a single expression proc parseStmt*(s: string) : stmt {.magic: "ParseStmtToAst".} ## Compiles the passed string to its AST representation ## Expects one or more statements proc getAst*(macroOrTemplate: expr): expr {.magic: "ExpandMacroToAst".} ## Obtains the AST nodes returned from a macro or template invocation ## example: ## macro FooMacro() = ## var ast = getAst(BarTemplate()) Handling of the node.toYaml magic moved to the evaluation engine.
* Added AST introspection routines as a part of the standard libraryZahary Karadjov2011-09-201-0/+33
|
* bugfixes for generics; new threads implementation still brokenAraq2011-09-201-6/+10
|
* new actors implementation for nimrod; compiler's generics still not up for ↵Araq2011-08-291-2/+3
| | | | the task though
* locks now in their own core moduleAraq2011-08-201-0/+158
|
* finally got rid of nkPassAsOpenArrayAraq2011-08-161-1/+1
|
* preparations for 0.8.12Araq2011-07-101-8/+8
|
* importCompilerProc pragma introduced because the hacks for typeinfo.nim did ↵Araq2011-06-271-9/+16
| | | | not suffice
* code gen bugfixes; marshal.nim implementedAraq2011-06-262-296/+222
|
* fixed typos in typeinfo.nimAraq2011-06-121-14/+14
|
* lots of changes and additions to typeinfo.nimAraq2011-06-121-88/+274
|
* Some typeinfo.nim changes.dom962011-06-111-9/+18
|
* Added typeinfo moduledom962011-06-091-0/+195
|
* first steps to thread local heapsAraq2011-06-021-348/+0
|
* thread progressAraq2011-05-221-5/+6
|
* pthread_key_t is respected to be an opaque type ...Araq2011-05-201-3/+4
|
* further progress for multi-threadingAraq2011-05-191-104/+123
|
* threads with --gc:boehm may work now :-)Araq2011-05-171-46/+42
|
* thread support: next iterationAraq2011-05-171-91/+80
|
* store a pointer to thread local storage to make the GC happyAraq2011-05-161-2/+2
|
* further steps for thread support; bootstrapping should require unzip C ↵Araq2011-05-161-2/+1
| | | | sources and ./build.sh
* gc tweaking to gain a few percent of performanceAraq2011-05-072-57/+57
|
* grammar changes for table constructor: second partAraq2011-04-211-21/+1
|
* p[] instead of p^Araq2011-04-111-23/+23
|
* non-nil AST; continue after errors for IDE supportAraq2011-02-122-0/+0
|
* documentation improvementsAraq2011-02-061-4/+20
|
* changes to threads; --recursivePath supportAraq2011-01-291-43/+212
|
* basic thread support; still broken on Windows; untested on Mac OS XAraq2011-01-183-0/+683