summary refs log tree commit diff stats
path: root/tests/accept/compile
Commit message (Collapse)AuthorAgeFilesLines
* got rid of 'accept' dir in the testsAraq2011-11-19126-3059/+0
|
* fixed some testsAraq2011-11-197-20/+16
|
* macros and templates can be expanded anywhere where a type is expected.Zahary Karadjov2011-11-181-0/+39
| | | | | This allows for various type selection algorithms to be implemented. See tests / accept / compile / ttypeselectors.nim for examples.
* added another test caseAraq2011-11-121-0/+10
|
* GC tests now finally part of testsuiteAraq2011-11-101-5/+5
|
* fixes #2Araq2011-11-021-3/+0
|
* 'bind' as a declarative statementAraq2011-10-102-0/+15
|
* code generator supports constant sequences; more consistent compile time ↵Araq2011-10-071-1/+0
| | | | evaluation
* renamed optional to discardableAraq2011-09-241-3/+3
|
* implemented optional pragma for implicit discardAraq2011-09-241-0/+13
|
* more fixes to get rid of tyPureObjectAraq2011-09-241-4/+4
|
* fixed some newly introduced bugsAraq2011-09-212-22/+59
|
* 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-20/+3
|
* added system.slurp for easy embedding of resourcesAraq2011-08-101-0/+6
|
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-0/+4
|
* fixes #42Araq2011-08-041-0/+35
|
* anonymous procs implemented; however no closure support yetAraq2011-08-011-0/+12
|
* void type improvements; documentation improvementsAraq2011-07-312-8/+25
|
* void type for genericsAraq2011-07-311-0/+13
|
* bugfix: forwarding of generic procs now worksAraq2011-07-301-0/+11
|
* bugfix: 'final' not passed to genericAraq2011-07-291-1/+1
|
* old pointer deref operator completely removedAraq2011-07-231-0/+53
|
* tests repaired; serious typo in the allocator fixed; fixes #32Araq2011-07-223-4/+4
|
* preparations for 0.8.12Araq2011-07-1022-54/+0
|
* tests are green againAraq2011-06-281-1/+1
|
* improvements to get code size down for programs that don't use GCAraq2011-06-262-0/+68
|
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-0/+65
|
* bugfix: invoking a generic iterator twice triggers a code gen bug (titer2)Araq2011-06-201-9/+9
|
* bugfix: typeinfo generation for tuplesAraq2011-06-191-4/+15
|
* rebuilt csources; bootstrap should work againAraq2011-06-151-0/+40
|
* bugfix: proper return types for templatesAraq2011-06-151-0/+4
|
* tuple unpacking is not enforced in for loops anymoreAraq2011-06-152-0/+31
|
* basic thread analysis workingAraq2011-06-131-0/+54
|
* deprecated system.copy: use system.substr insteadAraq2011-05-141-1/+1
|
* loop unrolled for stack markingAraq2011-05-131-0/+19
|
* cleaned up the tests; fixes #30; fixes #26Araq2011-05-0112-2/+52
|
* slices are first class citizensAraq2011-04-221-0/+16
|
* hashtables: 1st version; parseutils additionsAraq2011-04-181-2/+2
|
* := templatable; lexer improvementsAraq2011-04-171-0/+8
|
* p[] instead of p^Araq2011-04-112-2/+2
|
* some tests cleaned up; some bugfixesAraq2011-04-113-0/+32
|
* fixes #27dom962011-04-041-0/+17
|
* ugh, maybe broke gitAraq2011-04-013-0/+58
|
* some little bugfixesAraq2011-03-271-0/+7
|
* added 'reset' magic procAraq2011-03-253-0/+36
|
* bugfix: type converter that converts to bool in 'if' contextAraq2011-03-253-2/+26
|
* bugfixes; field discriminant checks; linearScanEnd, unroll, shallow pragmasAraq2011-03-235-0/+30
|
* linearScanEnd pragma; string case statement optimizationAraq2011-03-141-0/+11
|
* bugfix: tuple access in macros (issue #17)Araq2011-03-071-0/+21
|