Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | compiler almost free of deprecated expr/stmt names | Andreas Rumpf | 2016-07-30 | 1 | -3/+3 |
| | |||||
* | stdlib and compiler don't use .immediate anymore | Andreas Rumpf | 2016-07-29 | 1 | -10/+9 |
| | |||||
* | cleanup of #4113 | Andreas Rumpf | 2016-05-28 | 1 | -27/+27 |
| | |||||
* | getTypeInst and getTypeImpl mostly working now and added test | James Osborn | 2016-05-04 | 1 | -1/+8 |
| | |||||
* | added getTypeInst which includes generic parameters | James Osborn | 2016-05-04 | 1 | -12/+21 |
| | |||||
* | fixes #3731 | Andreas Rumpf | 2016-04-04 | 1 | -1/+1 |
| | |||||
* | fixes #3804 | Andreas Rumpf | 2016-04-04 | 1 | -1/+1 |
| | |||||
* | fixes #3973 | Andreas Rumpf | 2016-04-03 | 1 | -2/+5 |
| | |||||
* | fixes #3872 | Andreas Rumpf | 2016-03-04 | 1 | -4/+5 |
| | |||||
* | Fixed deprecation warnings while Nim compiles. | Hans Raaf | 2016-01-18 | 1 | -1/+1 |
| | | | | | I just removed unsigned and changed a writeLn() call to writeLine() to avoid the remaining deprecation warnings. | ||||
* | Merge pull request #3651 from jangko/vm_'excl' | Andreas Rumpf | 2015-12-21 | 1 | -1/+1 |
|\ | | | | | fixed compile time `excl ` cause SIGSEGV #3639 | ||||
| * | fixed compile time `excl ` cause SIGSEGV #3639 | jangko | 2015-12-17 | 1 | -1/+1 |
| | | |||||
* | | fixed VM touint conversion #2514 | jangko | 2015-12-19 | 1 | -1/+8 |
|/ | |||||
* | fixes #3546 | Araq | 2015-11-18 | 1 | -2/+5 |
| | |||||
* | allows macros to access documentation comments | Araq | 2015-11-18 | 1 | -0/+1 |
| | |||||
* | msgs: One msgWriteln with optional flags | Adam Strzelecki | 2015-10-22 | 1 | -2/+2 |
| | | | | Instead of msgWriteln, outWriteln and stdoutWriteln doing essentially the same. | ||||
* | compiler/vm: Use stdout too in VM time echo | Adam Strzelecki | 2015-10-16 | 1 | -2/+2 |
| | | | | | Now VM time echo outputs to stdout too, same as compile time echo, rather using same handle as compiler diagnostics (stderr default). | ||||
* | fixes #3299 | Araq | 2015-10-15 | 1 | -1/+4 |
| | |||||
* | added undocumented exportNims pragma for Nimscript support | Araq | 2015-10-03 | 1 | -0/+25 |
| | |||||
* | vm: Don't fail on unknown enum position to string | Adam Strzelecki | 2015-09-28 | 1 | -1/+1 |
| | | | | | | | Previously trying to convert constant of enum type, where this enum type has no entry with given constant position leaded to "internal error: opConv for enum". Instead of producing error, now we gracefully convert it to "EnumType position". | ||||
* | Uint64 to string in pure nim. array[char] to string fixed in vm. | Yuriy Glukhov | 2015-09-14 | 1 | -1/+12 |
| | |||||
* | fixes some regressions | Araq | 2015-09-12 | 1 | -0/+2 |
| | |||||
* | VM produces objects. | Yuriy Glukhov | 2015-09-05 | 1 | -4/+9 |
| | |||||
* | implemented macros.getImpl | Araq | 2015-08-21 | 1 | -0/+8 |
| | |||||
* | preparations for Nimble NimScript integrations; minor cleanups | Araq | 2015-08-18 | 1 | -0/+4 |
| | |||||
* | implements experimental new config system based on NimScript | Araq | 2015-08-16 | 1 | -2/+2 |
| | |||||
* | Merge pull request #3177 from zah/generic-types-in-macros | Andreas Rumpf | 2015-08-14 | 1 | -9/+24 |
|\ | | | | | Generic types in macros | ||||
| * | Disable the new generic params handling for immediate template and macros | Zahary Karadjov | 2015-08-02 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since immediate templates are not subjected to the standard sigmatching algorithm, they will have a number of deficiencies when it comes to generic params: Type dependencies between the parameters won't be honoured and the bound generic symbols won't be resolvable within their bodies. We could try to fix this, but it may be wiser to just deprecate immediate templates and macros now that we have working untyped parameters. Disabling the new features is admittedly not the greatest way to handle this situations as it introduces inconsistency in the language, but at least it makes the code backwards-compatible with the previous version of the compiler instead of triggering more serious problems. | ||||
| * | fix #1858 again; restores the support for static macro params | Zahary Karadjov | 2015-08-02 | 1 | -9/+23 |
| | | |||||
* | | fixes #3192 | Araq | 2015-08-07 | 1 | -1/+1 |
|/ | |||||
* | fixes #3103 | Araq | 2015-08-02 | 1 | -2/+4 |
| | |||||
* | emerald project has a chance of working | Araq | 2015-08-02 | 1 | -4/+5 |
| | |||||
* | staticExec now supports caching | Araq | 2015-07-15 | 1 | -1/+4 |
| | |||||
* | macros: Introduce sameType(a, b) for node types | Adam Strzelecki | 2015-07-03 | 1 | -0/+3 |
| | | | | | | | | | | | | | Previously introduced node comparison `==` was working somehow wrong on nodes returned from getType(a), comparing just ids of the symbols. Recently introduced `==` change 47dce2688633fad840a2f5e4073c531f1cd640ca started comparing symbol nodes pointer-wise, thus strictly. Since getType(a) always creates new symbol pointing to the type, comparing two such nodes using `==` always returns false, even they point to the same type. That is why we need a new sameType macro to be able to tell if these nodes point to the same type. | ||||
* | fixes #3028 | Araq | 2015-07-01 | 1 | -1/+1 |
| | |||||
* | VM: use stricter notion of equality for NimNode | Araq | 2015-06-25 | 1 | -1/+2 |
| | |||||
* | fixes #2297, fixes #2946 | Araq | 2015-06-18 | 1 | -12/+0 |
| | |||||
* | macros: exprStructuralEquivalent for EqNimrodNode | Adam Strzelecki | 2015-06-10 | 1 | -1/+5 |
| | | | | | Previously NimNode comparison in macros way returning false for anything else than nil literal. | ||||
* | Update ast spec about uint literals | def | 2015-05-18 | 1 | -1/+1 |
| | |||||
* | Make intVal work for uint literals in the VM | def | 2015-05-18 | 1 | -1/+1 |
| | |||||
* | marshalling can be done at compile-time | Araq | 2015-04-25 | 1 | -6/+15 |
| | |||||
* | VM: minor fixes to make lexim work | Araq | 2015-04-20 | 1 | -1/+8 |
| | |||||
* | Improve error message for failed conversion in VM | def | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | | - Fixes #2045 - Old one: Error: conversion from unknown type to unknown type is invalid - New one: Error: conversion from -1 to [0..255] is invalid | ||||
* | fixes #2252 | Araq | 2015-03-04 | 1 | -0/+2 |
| | |||||
* | cleaned up whitespace | Araq | 2015-03-04 | 1 | -22/+22 |
| | |||||
* | don't use stdout for nimsuggest server mode | Araq | 2015-02-27 | 1 | -4/+8 |
| | |||||
* | implements a type API for macros | Araq | 2015-02-24 | 1 | -1/+19 |
| | |||||
* | macros.PNimrodNode is now NimNode | Araq | 2015-02-24 | 1 | -1/+1 |
| | |||||
* | fixes #2167 | Araq | 2015-02-20 | 1 | -3/+9 |
| | |||||
* | better error message | Araq | 2015-02-08 | 1 | -1/+3 |
| |