summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* small bugfixes to make more tests greenAraq2011-11-022-4/+7
|
* DLL generation may work againAraq2011-11-022-8/+10
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-11-022-3/+4
|\
| * Fixed the tester. Some fixes and additions for the JS backend.dom962011-10-312-3/+4
| |
* | better code generation for constant aggregatesAraq2011-11-021-3/+4
|/
* Fixed issue with some functions in the sockets module not reporting the ↵dom962011-10-302-31/+85
| | | | correct error message. Added more disconnection cases in the irc module, also added a message limiting system.
* splicing tested and documentedAraq2011-10-281-21/+22
|
* compilation cache: tests now part of test suiteAraq2011-10-271-0/+4
|
* new compiler option tlsEmulationAraq2011-10-271-1/+1
|
* compilation cache: mostly working; generics not yetAraq2011-10-251-28/+28
|
* compilation cache: methods have a chance to workAraq2011-10-231-10/+14
|
* thread local vs. global system.raiseHookAraq2011-10-232-4/+15
|
* rod files: next trivial examples workingAraq2011-10-221-1/+1
|
* preparations for proper memmap'ed filesAraq2011-10-221-0/+51
|
* much more efficient rod file generationAraq2011-10-181-2/+1
|
* libuv working on windows tooZahary Karadjov2011-10-124-29/+28
| | | | Added: vcc compilation flags for proper debug symbol generation
* Added wrappers for joyent's libuv and http_parser librarierZahary Karadjov2011-10-123-0/+783
|
* 'bind' as a declarative statementAraq2011-10-101-1/+3
|
* new syntactic construct: a{i}Araq2011-10-082-2/+2
|
* slurp uses path; unidecode is improved and threadsafeAraq2011-10-083-23/+31
|
* *Pimped up* the test runner with colorful outputZahary Karadjov2011-10-072-7/+39
| | | | Added: terminal.styledEcho macro
* Cleaned up the circular dependecies and remaining issuesZahary Karadjov2011-10-073-41/+28
| | | | Changed: The []= operator for strings and sequences is now capable of splicing
* Basic unit testing facilities (suites, fixtures, cases)Zahary Karadjov2011-10-073-7/+187
| | | | | | | | 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).
* code generator supports constant sequences; more consistent compile time ↵Araq2011-10-073-12/+25
| | | | evaluation
* bugfix: $ escaping in interpolatedFragmentsAraq2011-09-261-6/+12
|
* bugfix: internal error in evalFieldAccess; parseutils.interpolatedFragments ↵Araq2011-09-264-100/+80
| | | | optimized; tstringinterp.nim now works
* sockets.recv optimizations; stdlib now supports taint modeAraq2011-09-2411-73/+86
|
* renamed optional to discardableAraq2011-09-246-39/+49
|
* more fixes to get rid of tyPureObjectAraq2011-09-242-3/+3
|
* got rid of akPureObjectAraq2011-09-242-7/+6
|
* got rid of tyPureObject; broke bootstrapping; use generated C codeAraq2011-09-244-9/+8
|
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-09-246-5/+40
|\
| * Fixed string concatenation and other bugs in the JS backend. Fixed a small ↵dom962011-09-236-5/+40
| | | | | | | | bug in the IRC module.
* | beginning of a taint mode; type system enhancementsAraq2011-09-246-81/+97
|/
* fixed some newly introduced bugsAraq2011-09-213-17/+19
|
* using statement (ala C#) implemented as macro (added as test).Zahary Karadjov2011-09-201-29/+40
| | | | simplified the usage of the interpolatedFragments iterator.
* Moved the parseAST magics to evals.nimZahary Karadjov2011-09-202-2/+98
| | | | | | | | | | | | | | 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.
* Some very small steps towards an uuid generation module.Zahary Karadjov2011-09-201-0/+30
| | | | I did some basic research on cross-platform UUID generation and didn't want to lose any information, so this code only represents what I learned (uuidMacTime should work tho).
* 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
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-09-202-63/+319
|\
| * lib/wrappers/sphinx.nim: fix typo, use 'shpinx' instead of 'sphinx'Keita Haga2011-09-091-63/+63
| |
| * Some improvements relating to the IRC module.dom962011-09-041-14/+16
| |
| * Added IRC module.dom962011-09-041-0/+254
| |
* | bugfixes for generics; new threads implementation still brokenAraq2011-09-204-31/+39
|/
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-08-291-53/+53
|\
| * lib/pure/strutils.nim: fix doc comment for splitLinesKeita Haga2011-08-251-53/+53
| |
* | added actors.nim file; compiler not up for this taskAraq2011-08-291-0/+184
| |
* | new actors implementation for nimrod; compiler's generics still not up for ↵Araq2011-08-295-169/+85
| | | | | | | | the task though
* | attempt to fix tester.nim file handle leakAraq2011-08-291-0/+0
|/