summary refs log tree commit diff stats
path: root/compiler/vm.nim
Commit message (Collapse)AuthorAgeFilesLines
* fix #1858 again; restores the support for static macro paramsZahary Karadjov2015-08-021-9/+23
|
* fixes #3103Araq2015-08-021-2/+4
|
* emerald project has a chance of workingAraq2015-08-021-4/+5
|
* staticExec now supports cachingAraq2015-07-151-1/+4
|
* macros: Introduce sameType(a, b) for node typesAdam Strzelecki2015-07-031-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 #3028Araq2015-07-011-1/+1
|
* VM: use stricter notion of equality for NimNodeAraq2015-06-251-1/+2
|
* fixes #2297, fixes #2946Araq2015-06-181-12/+0
|
* macros: exprStructuralEquivalent for EqNimrodNodeAdam Strzelecki2015-06-101-1/+5
| | | | | Previously NimNode comparison in macros way returning false for anything else than nil literal.
* Update ast spec about uint literalsdef2015-05-181-1/+1
|
* Make intVal work for uint literals in the VMdef2015-05-181-1/+1
|
* marshalling can be done at compile-timeAraq2015-04-251-6/+15
|
* VM: minor fixes to make lexim workAraq2015-04-201-1/+8
|
* Improve error message for failed conversion in VMdef2015-03-121-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 #2252Araq2015-03-041-0/+2
|
* cleaned up whitespaceAraq2015-03-041-22/+22
|
* don't use stdout for nimsuggest server modeAraq2015-02-271-4/+8
|
* implements a type API for macrosAraq2015-02-241-1/+19
|
* macros.PNimrodNode is now NimNodeAraq2015-02-241-1/+1
|
* fixes #2167Araq2015-02-201-3/+9
|
* better error messageAraq2015-02-081-1/+3
|
* fixes #1989Araq2015-02-011-3/+5
|
* nimsuggest: first versionAraq2015-01-271-1/+1
|
* Proposed fix for issue #1946Audun Wilhelmsen2015-01-161-0/+1
|
* Revert 5e4ae8dDustin Lacewell2015-01-071-23/+9
|
* Happy new year!Guillaume Gelin2015-01-061-1/+1
|
* fix #1858; Add support for generic templates and macrosZahary Karadjov2015-01-051-9/+23
| | | | | | | | | Implementation notes: Just after overload resolution, the resolved generic params will be added to the call expression to be later processed in evalTemplate and evalMacroCall. These procs have been modified to handle the increased number of parameters, but one remaining issue is that immediate templates and macros don't go through the same process. The next commit will outlaw the use of generic parameters with such macros.
* fixes #1744Araq2014-12-171-3/+8
|
* fixes #1689Araq2014-12-101-0/+7
|
* fixes #1692Araq2014-12-101-3/+5
|
* fixes #916Araq2014-11-201-2/+2
|
* fixes error propagation for macros.parseExprAraq2014-11-131-0/+1
|
* fixes #1473Araq2014-11-121-7/+23
|
* 'try' works at compile-timeAraq2014-10-021-1/+12
|
* fixes documentation generatorAraq2014-09-141-2/+2
|
* updated iup.nim; made tests greenAraq2014-08-311-2/+2
|
* VM supports math and a few os procsAraq2014-08-301-4/+10
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* Fixes incorrect macro stack traces.Dominik Picheta2014-08-111-1/+10
|
* distinguish between 'defined' and 'declared'Araq2014-08-111-3/+1
|
* parseBiggestFloat is now builtinAraq2014-07-161-1/+13
|
* VM: fixes 'raise'Araq2014-07-101-2/+2
|
* fixes #933Araq2014-07-081-4/+1
|
* fixes #1103; fixes #1297Araq2014-07-081-9/+8
|
* fixes #1310Araq2014-07-021-0/+7
|
* initial non-compiling version of 'parallel'Araq2014-05-121-2/+3
|
* fixes #1140Araq2014-05-051-1/+2
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-211-1/+7
|\
| * Fixes #1119.Dominik Picheta2014-04-201-0/+1
| |
| * Fixes #1093.Dominik Picheta2014-04-201-1/+6
| |