summary refs log tree commit diff stats
path: root/compiler/nimeval.nim
Commit message (Expand)AuthorAgeFilesLines
* Added nimscript support to repl (#10834)sealmove2019-03-131-2/+7
* Fixed order of output in repl and added a proc for opening a custom repl (#10...sealmove2019-03-101-1/+23
* test case for #9180 and re-enables the disabled tcompilerapi test (#9181)Timothee Cour2018-10-111-0/+7
* compiler refactoring; use typesafe path handing; docgen: render symbols betwe...Andreas Rumpf2018-09-071-3/+3
* make tests green againAndreas Rumpf2018-06-111-2/+2
* incremental compilation: implemented basic replay logicAndreas Rumpf2018-06-021-0/+1
* compiler API: final cleanups; improve security by diabling 'gorge' and friendsAndreas Rumpf2018-05-291-3/+6
* rewrote nimeval.nim; added tcompilerapi example to show how the compiler can ...Andreas Rumpf2018-05-291-23/+104
* rename 'nimrodVM' to 'nimVM'Andreas Rumpf2018-05-281-1/+1
* fixes #7522Araq2018-04-061-0/+1
* removed compiler internal list implementation (#5371)Arne Döring2017-02-221-2/+2
* Fix compilation error in nimeval.Aditya Siram2016-11-271-5/+6
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-1/+1
* Make nimeval compiledef2015-01-121-1/+1
* Nimrod renamed to NimAraq2014-08-281-2/+2
* xmltree.`<>` macro works againAraq2014-02-271-4/+4
* first steps to a new evaluation engineAraq2013-07-241-0/+33
90119066a ^
55c407464 ^
765366c1f ^
90119066a ^









6ff8752be ^
90119066a ^


6ff8752be ^
90119066a ^

765366c1f ^






cd292568d ^


90119066a ^






90119066a ^
90119066a ^

90119066a ^
f56816def ^
90119066a ^

90119066a ^


e487c0a24 ^
90119066a ^




90119066a ^
2169fd63b ^
90119066a ^

cd292568d ^



90119066a ^
90119066a ^


2169fd63b ^


5b789f2da ^
cd292568d ^
5b789f2da ^

8c799da86 ^
5b789f2da ^
a58a2f382 ^
5b789f2da ^
90119066a ^
cd292568d ^
5b789f2da ^




cd292568d ^
5b789f2da ^






90119066a ^

























73c355176 ^

90119066a ^











6ff8752be ^
4d5c3ebd4 ^


6ff8752be ^


3091bc495 ^




90119066a ^

















6ff8752be ^
90119066a ^


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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207