summary refs log tree commit diff stats
path: root/compiler/vm.nim
Commit message (Expand)AuthorAgeFilesLines
...
* compiler/vm: Use stdout too in VM time echoAdam Strzelecki2015-10-161-2/+2
* fixes #3299Araq2015-10-151-1/+4
* added undocumented exportNims pragma for Nimscript supportAraq2015-10-031-0/+25
* vm: Don't fail on unknown enum position to stringAdam Strzelecki2015-09-281-1/+1
* Uint64 to string in pure nim. array[char] to string fixed in vm.Yuriy Glukhov2015-09-141-1/+12
* fixes some regressionsAraq2015-09-121-0/+2
* VM produces objects.Yuriy Glukhov2015-09-051-4/+9
* implemented macros.getImplAraq2015-08-211-0/+8
* preparations for Nimble NimScript integrations; minor cleanupsAraq2015-08-181-0/+4
* implements experimental new config system based on NimScriptAraq2015-08-161-2/+2
* Merge pull request #3177 from zah/generic-types-in-macrosAndreas Rumpf2015-08-141-9/+24
|\
| * Disable the new generic params handling for immediate template and macrosZahary Karadjov2015-08-021-4/+5
| * fix #1858 again; restores the support for static macro paramsZahary Karadjov2015-08-021-9/+23
* | fixes #3192Araq2015-08-071-1/+1
|/
* 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
* 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
* 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 #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
* 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
2610f'>^
36e4e71e ^
7582555b ^
36e4e71e ^
7582555b ^








36e4e71e ^
4ea0f69a ^


36e4e71e ^




4ea0f69a ^
e71c8103 ^

36e4e71e ^

f6ae504c ^
4ea0f69a ^
36e4e71e ^

4ea0f69a ^

36e4e71e ^






4ea0f69a ^

306c76d8 ^






b6aff4c3 ^

306c76d8 ^
4ea0f69a ^

45cf5174 ^












1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137