summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Optimized divMod in polyRobert Persson2013-07-031-13/+11
| | | | | Made a huge speed improvement in debug mode. Only a few % in release, but the memory load should be somewhat lower.
* Fixed a mixed bag of stuff poly and numericRobert Persson2013-07-032-51/+42
|
* Cleanup of poly an numeric modulesRobert Persson2013-07-022-63/+0
| | | | Removed some test code
* Added poly and numeric modulesRobert Persson2013-07-022-0/+524
|
* Merge pull request #502 from nihathrael/masterAraq2013-07-011-2/+5
|\ | | | | Order suggestion output by scope and then by item name.
| * Order suggestion output by scope and then by item name.Thomas Kinnen2013-07-011-2/+5
| |
* | fixes #501Araq2013-07-012-1/+4
| |
* | bugfix: -o option doesn't crash the compiler anymoreAraq2013-07-011-3/+3
|/
* made parseBiggestFloat faster for large exponentsAraq2013-07-011-3/+12
|
* fixes --os:standaloneAraq2013-06-303-9/+14
|
* made some tests greenAraq2013-06-304-6/+6
|
* --os:standalone works againAraq2013-06-3016-641/+572
|
* 2n attempt to fix niminst on the testing machinesAraq2013-06-291-1/+2
|
* fixes lots of regressionsAraq2013-06-295-15/+20
|
* bugfix: pragmas allowed for implicit genericsAraq2013-06-291-3/+3
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-06-2925-47/+709
|\
| * Merge pull request #486 from gradha/pr_idetools_docsAraq2013-06-2823-46/+683
| |\ | | | | | | Adds idetools docs
| | * Adds idetools hierarchy nesting test.Grzegorz Adam Hankiewicz2013-06-163-0/+59
| | |
| | * Adds idetools test to verify --usages, reuses testcase.Grzegorz Adam Hankiewicz2013-06-161-0/+17
| | |
| | * Adds idetools test to check declaration proc signatures.Grzegorz Adam Hankiewicz2013-06-163-0/+25
| | |
| | * Adds idetoos testcase to verify returned signatures.Grzegorz Adam Hankiewicz2013-06-163-1/+50
| | | | | | | | | | | | At the moment too many of them return proc.
| | * Adds $SILENT replacement to reduce test output verbosity.Grzegorz Adam Hankiewicz2013-06-1611-44/+52
| | |
| | * Starts idetools specific documentation.Grzegorz Adam Hankiewicz2013-06-163-1/+476
| | |
| | * Lists available idetools caas switches.Grzegorz Adam Hankiewicz2013-06-151-0/+4
| | |
| * | Merge pull request #487 from gradha/pr_no_more_slurpingAraq2013-06-282-1/+26
| |\ \ | | | | | | | | Improves highlite module
| | * | Adds highlite to tests suite.Grzegorz Adam Hankiewicz2013-06-182-1/+3
| | | |
| | * | Adds previous slurping as runnable testcase.Grzegorz Adam Hankiewicz2013-06-181-1/+14
| | | |
| | * | Replaces relative file slurping with hardcoded array.Grzegorz Adam Hankiewicz2013-06-181-1/+11
| | |/
* | / bugfix: typoAraq2013-06-291-1/+1
|/ /
* | got rid of debug callsAraq2013-06-281-3/+1
| |
* | some small performance improvement for the evaluatorAraq2013-06-283-50/+69
| |
* | small REPL improvementsAraq2013-06-283-6/+7
| |
* | var tuple unpacking works at compile timeAraq2013-06-284-40/+54
| |
* | implements nicer floating point literalsAraq2013-06-272-13/+14
| |
* | attempt to make libzip work on the testing machinesAraq2013-06-272-10/+15
| |
* | Merge branch 'master' of github.com:Araq/NimrodAraq2013-06-274-151/+150
|\ \
| * | Fixed OSError + recvLine deprecation warnings.Dominik Picheta2013-06-274-151/+150
| | |
* | | bugfix: rendering of typ|typ2Araq2013-06-273-10/+17
| | |
* | | implements the 'codegenDecl' pragmaAraq2013-06-277-25/+58
| | |
* | | attempt to use the lib.so for libzipAraq2013-06-271-49/+54
| | |
* | | bugfix: marshal supports unsigned numbersAraq2013-06-273-4/+11
| | |
* | | fixes #488Araq2013-06-272-0/+10
| | |
* | | fixes #442Araq2013-06-272-11/+38
| | |
* | | fixes #492Araq2013-06-272-3/+3
|/ /
* | Merge branch 'master' of github.com:Araq/NimrodAraq2013-06-2712-485/+585
|\ \
| * | Fixed OSError deprecation warnings.Dominik Picheta2013-06-263-32/+35
| | |
| * | Merge pull request #489 from onionhammer/patch-1Dominik Picheta2013-06-251-3/+4
| |\ \ | | | | | | | | Fix: OpenSSL on Windows
| | * | Fix: OpenSSL on Windowsonionhammer2013-06-201-3/+4
| | |/ | | | | | | | | | | | | | | | | | | Updated CRYPTO_malloc_init to no longer call CRYPTO_set_mem_functions if compiling for windows Updated ERR_load_BIO_strings to import from DLLUtilName instead of DLLSSLName Updated OpenSSL_add_all_algorithms to import from DLLUtilName instead of DLLSSLName
| * | Deprecated OSError, and modified it to require an explicit OS error code.Dominik Picheta2013-06-255-126/+196
| | | | | | | | | | | | The deprecated functions include the OSError and OSErrorMsg, the name did not change however the signature of the new functions did. They now require a TOSErrorCode value be passed to them. This value can be retrieved using OSLastError. The reason this was done is because on Windows any win api call can reset the last error code to 0, this change allows the user to immediately grab the error code and worry about the string representation later if needs be.
| * | Fixed terminal module so that it doesn't raise an EOS exception when stdout ↵Dominik Picheta2013-06-222-334/+334
| | | | | | | | | | | | is redirected.