summary refs log tree commit diff stats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* computed goto now works; some progress on the new VMAraq2013-10-251-15/+16
|
* Merge pull request #604 from reactormonk/masterAndreas Rumpf2013-10-051-0/+10
|\ | | | | moved eqproc to the correct magic position
| * don't mess with semfold, use vars insteadSimon Hafner2013-09-261-2/+2
| |
| * moved eqproc to the correct magic positionSimon Hafner2013-09-261-0/+10
| | | | | | | | also added mEqCString to evalOps so the test runs
* | fixed another semicolon related parsing bugAraq2013-10-021-0/+18
| |
* | examples from the talk part of test suiteAraq2013-09-271-0/+1
|/
* the compiler can now deal with multiple modules of the same nameAraq2013-09-265-0/+32
|
* fixes #575Araq2013-09-101-0/+39
|
* resolved the conflictAraq2013-09-034-39/+31
|\
| * Merge branch 'type-classes' into upstreamZahary Karadjov2013-09-034-39/+31
| |\
| | * fix tcompilesZahary Karadjov2013-08-271-18/+13
| | |
| | * proper discrimination between csEmpty and csNoMatchZahary Karadjov2013-08-271-3/+1
| | | | | | | | | | | | fixes twrongtupleaccess and topaque
| | * fix tnoopZahary Karadjov2013-08-261-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | This commit requires further investigation. Fixing semExpr(nkCall) once and for all to work with sym-choices and to allow overloading with immediate templates and macros will probably set this straight too.
| | * implemented delegators and improved the error messages of unmatched type classesZahary Karadjov2013-08-261-12/+12
| | |
* | | better support for GNU's assemblerAraq2013-09-031-1/+1
|/ /
* | fixes #516Araq2013-08-311-0/+17
| |
* | fixes #554, fixes #179Araq2013-08-311-0/+27
| |
* | fixes #563Araq2013-08-311-0/+14
| |
* | fixes #569; C++ codegen works againAraq2013-08-311-1/+16
| |
* | fixes #578Araq2013-08-301-0/+12
| |
* | Merge branch 'master' of github.com:Araq/NimrodAraq2013-08-304-2/+163
|\|
| * implemented and documented the new typedesc binding rulesZahary Karadjov2013-08-231-0/+87
| |
| * pass-through of static int generic params to arrays when late instantiation ↵Zahary Karadjov2013-08-231-2/+7
| | | | | | | | is disabled
| * Experimental support for delayed instantiation of genericsZahary Karadjov2013-08-232-0/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This postpones the semantic pass over the generic's body until the generic is instantiated. There are several pros and cons for this method and the capabilities that it enables may still be possible in the old framework if we teach it a few new trick. Such an attempt will follow in the next commits. pros: 1) It allows macros to be expanded during generic instantiation that will provide the body of the generic. See ``tmacrogenerics``. 2) The instantiation code is dramatically simplified. Dealing with unknown types in the generic's body pre-pass requires a lot of hacky code and error silencing in semTypeNode. See ``tgenericshardcases``. cons: 1) There is a performance penalty of roughly 5% when bootstrapping. 2) Certain errors that used to be detected in the previous pre-pass won't be detected with the new scheme until instantiation.
* | fixes #572Araq2013-08-301-0/+3
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-08-2210-80/+184
|\
| * hacky fix for generic constraints matchingZahary Karadjov2013-08-193-8/+34
| |
| * some steps to improve the type mismatches with the newZahary Karadjov2013-08-191-0/+10
| | | | | | | | generic instantiation logic
| * Revert "Revert "made some tests green""Zahary Karadjov2013-08-192-70/+70
| |
| * Revert "Revert "fix tforwardgeneric""Zahary Karadjov2013-08-191-2/+3
| | | | | | | | This reverts commit e3f93241c3824e49b69c647bbd44726a79e8f8f8.
| * Revert "Revert "test cases for the new features""Zahary Karadjov2013-08-193-0/+67
| | | | | | | | This reverts commit e1b668c868dbc647bb5da98d8e4769c2c9b351fd.
* | fixed and documented computedGoto pragmaAraq2013-08-221-2/+3
|/
* implemented computed goto supportAraq2013-08-131-0/+45
|
* Take into account dirty buffers in suggest output; Fixes zah/nimrod.vim#14Zahary Karadjov2013-08-071-3/+4
|
* fixes #531Araq2013-07-2413-0/+662
|
* fixes #544Araq2013-07-241-0/+12
|
* Adds idetools failure case for re"" being reported as a module.Grzegorz Adam Hankiewicz2013-07-062-1/+7
|
* Documents idetools skMacro with failure test case.Grzegorz Adam Hankiewicz2013-07-062-1/+33
|
* Documents idetools skLabel with failure test case.Grzegorz Adam Hankiewicz2013-07-062-0/+18
|
* Moves caasdriver comments into idetools document.Grzegorz Adam Hankiewicz2013-07-061-39/+1
|
* Forces removal of nimcache dir for all caas runs.Grzegorz Adam Hankiewicz2013-07-061-0/+2
| | | | | Now some test cases fail because they can't use a previous nimcache directory (which potentially could have wrong compiled code anyway).
* Adds more idetools suggest failure cases.Grzegorz Adam Hankiewicz2013-07-062-0/+32
|
* Merge pull request #485 from gradha/pr_suggest_caseAraq2013-07-023-0/+57
|\ | | | | Adds idetools --suggest test case. Refs #484.
| * Adds idetools --suggest test case. Refs #484.Grzegorz Adam Hankiewicz2013-07-023-0/+57
| | | | | | | | | | | | 1) There are too many suggestions for the given prefix. 2) The suggestions don't take into account the preceeding type. 3) trackDirty only works on caas mode.
* | fixes #503Araq2013-07-021-0/+10
|/
* fixes #501Araq2013-07-011-0/+3
|
* fixes --os:standaloneAraq2013-06-301-1/+3
|
* made some tests greenAraq2013-06-303-4/+4
|
* --os:standalone works againAraq2013-06-303-0/+25
|
* fixes lots of regressionsAraq2013-06-291-6/+8
|