summary refs log tree commit diff stats
path: root/tests/compilerapi
Commit message (Collapse)AuthorAgeFilesLines
* reset macrocache after each script evaluation (#22195)Juan M Gómez2023-06-301-0/+27
|
* fixes #14409; fixes #10674 VM callbacks switch to table-index seqs (#21297)ringabout2023-01-261-1/+1
| | | | | | | * fixes #14409; fixes#10674 VM callbacks switch to table-index seqs * fixes package name * reduce runtime cost
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-1/+1
| | | | | | | | | | | | | | | | | | | * reworked ID handling * the packed AST now has its own ID mechanism * basic serialization code works * extract rodfiles to its own module * rodfiles: store and compare configs * rodfiles: store dependencies * store config at the end * precise dependency tracking * dependency tracking for rodfiles * completed loading of PSym, PType, etc * removed dead code * bugfix: do not realloc seqs when taking addr into an element * make IC opt-in for now * makes tcompilerapi green again * final cleanups Co-authored-by: Andy Davidoff <github@andy.disruptek.com>
* nimeval errorHook support (#15255)Scott Wadden2020-09-072-13/+29
|
* hotfix: make tcompilerapi green againAraq2020-04-301-2/+3
|
* make case-object transitions explicit, make unknownLineInfo a const, replace ↵Jasper Jenkins2020-01-171-1/+0
| | | | a few magic numbers with consts (#13170)
* make addQuoted work on nimscript (#12717) [backport]Jasper Jenkins2019-11-282-0/+6
|
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
|
* make tests green againAraq2019-05-271-0/+1
|
* fixes #1286; object case transitions are now soundAndreas Rumpf2019-05-271-0/+1
|
* megatest can be executedArne Döring2018-12-111-2/+1
|
* test case for #9180 and re-enables the disabled tcompilerapi test (#9181)Timothee Cour2018-10-111-22/+22
| | | | | | * add findNimStdLibCompileTime and un-disable tcompilerapi test; add test case for #9180 * address comments
* attempt to make travis green for 'koch testinstall'Andreas Rumpf2018-09-181-1/+8
|
* compiler API: final cleanups; improve security by diabling 'gorge' and friendsAndreas Rumpf2018-05-292-1/+14
|
* rewrote nimeval.nim; added tcompilerapi example to show how the compiler can ↵Andreas Rumpf2018-05-293-0/+46
be used as an API
9 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-03-27 17:43:41 -0700 2812' href='/akkartik/mu/commit/html/041jump_target.cc.html?h=hlt&id=a654e4ecace2d506d1b10f1dde2c287ebe84ef37'>a654e4ec ^
e5c11a51 ^






















a654e4ec ^

65361948 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^









201458e3 ^
5fe060d5 ^
204dae92 ^
5fe060d5 ^
204dae92 ^


201458e3 ^
204dae92 ^






2c678a4e ^
204dae92 ^

201458e3 ^
204dae92 ^

201458e3 ^
204dae92 ^
2c678a4e ^
805d58c6 ^






104e521c ^
805d58c6 ^



204dae92 ^
2c678a4e ^
805d58c6 ^


104e521c ^
805d58c6 ^





104e521c ^
805d58c6 ^












204dae92 ^


201458e3 ^
204dae92 ^
104e521c ^
5fe060d5 ^
805d58c6 ^
204dae92 ^

fa708f55 ^
204dae92 ^
104e521c ^
5fe060d5 ^
805d58c6 ^
204dae92 ^

104e521c ^
5fe060d5 ^
805d58c6 ^
204dae92 ^
5fe060d5 ^
204dae92 ^


201458e3 ^
204dae92 ^
805d58c6 ^



204dae92 ^





201458e3 ^
204dae92 ^
805d58c6 ^



204dae92 ^





201458e3 ^
204dae92 ^
805d58c6 ^



204dae92 ^





201458e3 ^
204dae92 ^













201458e3 ^
204dae92 ^

e62aa7e3 ^
204dae92 ^


201458e3 ^
5fe060d5 ^
204dae92 ^
5fe060d5 ^
204dae92 ^


201458e3 ^
204dae92 ^




201458e3 ^
204dae92 ^


201458e3 ^
204dae92 ^








201458e3 ^
65361948 ^


a654e4ec ^
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250