summary refs log tree commit diff stats
path: root/compiler/configuration.nim
Commit message (Expand)AuthorAgeFilesLines
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-180/+4
* remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-178/+0
* the remaining passes all compile againAndreas Rumpf2018-05-131-1/+2
* C code generator compiles againAndreas Rumpf2018-05-121-1/+3
* sem pass compiles againAndreas Rumpf2018-05-121-13/+5
* semstmts compiles againAndreas Rumpf2018-05-121-27/+7
* more modules compile againAndreas Rumpf2018-05-121-17/+2
* pragmas compiles againAndreas Rumpf2018-05-111-2/+2
* sigmatch compiles againAndreas Rumpf2018-05-111-1/+1
* avoid more global variablesAndreas Rumpf2018-05-111-1/+12
* sempass2 compiles againAndreas Rumpf2018-05-111-1/+1
* guards.nim does compileAndreas Rumpf2018-05-111-3/+3
* lookups compiles againAndreas Rumpf2018-05-101-2/+2
* semfold compiles againAndreas Rumpf2018-05-101-4/+4
* big refactoring: parser compiles againAndreas Rumpf2018-05-101-0/+389
the restriction that module names need to be unique per Nimble… (#11064)' href='/ahoang/Nim/commit/compiler/modules.nim?h=devel&id=0121dda9ba903b764cbd234667cc03f79ebadf44'>0121dda9b ^
b6b5a11be ^
0121dda9b ^
b6b5a11be ^
40ec7be45 ^
9e6fb3f69 ^
9eb909baf ^
40ec7be45 ^
9eb909baf ^
9e6fb3f69 ^
0121dda9b ^















9eb909baf ^
33b69f0ed ^
def61c9fc ^
61fb83ecb ^

9e6fb3f69 ^
def61c9fc ^
aa88e150d ^
92b8fac94 ^
0121dda9b ^
aa88e150d ^
f86b827d9 ^





0121dda9b ^
f86b827d9 ^





826c1e2d7 ^
9e6fb3f69 ^
aa88e150d ^
0121dda9b ^

f86b827d9 ^



f86b827d9 ^





9e6fb3f69 ^
826c1e2d7 ^
9e6fb3f69 ^





826c1e2d7 ^
9e6fb3f69 ^
826c1e2d7 ^

aa88e150d ^
5526252fa ^
826c1e2d7 ^
9e6fb3f69 ^
ca4b971bc ^


e9eab32e5 ^

0b84ee167 ^
8ca5b71c6 ^
9d8b4d602 ^
ddc6cec69 ^
aa88e150d ^
826c1e2d7 ^

9e6fb3f69 ^
33b69f0ed ^
aa88e150d ^
8ba7e7d80 ^



826c1e2d7 ^
8ca5b71c6 ^
8ba7e7d80 ^
86556ebfd ^

826c1e2d7 ^
aa88e150d ^
8ca5b71c6 ^
86556ebfd ^


545b1582c ^
7f7b13a45 ^
c94647aec ^
826c1e2d7 ^
342e50e26 ^

86556ebfd ^
c94647aec ^
074f276c8 ^
92b8fac94 ^
826c1e2d7 ^
aa88e150d ^
826c1e2d7 ^

aa88e150d ^
86556ebfd ^
342e50e26 ^
69b32637b ^
6acffcd28 ^
69b32637b ^
86556ebfd ^



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