summary refs log tree commit diff stats
path: root/compiler/importer.nim
Commit message (Expand)AuthorAgeFilesLines
* Fixing import path support inconsitency.Hans Raaf2015-03-071-1/+1
* Merge branch 'devel' into bigbreakAraq2014-10-231-3/+3
|\
| * fixes #1029Araq2014-10-221-2/+2
| * fixes 'import x as y' regressionAraq2014-10-221-1/+1
* | Merge branch 'devel' into bigbreakAraq2014-10-201-2/+4
|\|
| * Compare fileIndexes instead of file namesSimon Krauter2014-10-151-1/+1
| * Do not allow self importSimon Krauter2014-10-141-2/+4
* | updated the compiler to use the new symbol namesAraq2014-08-281-4/+4
* | Nimrod renamed to NimAraq2014-08-281-1/+1
|/
* Renamed considerAccents to considerQuotedIdentClay Sweetser2014-05-261-2/+2
* Renamed 'considerAcc' to 'considerAccents' for clarityClay Sweetser2014-05-241-2/+2
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-7/+7
* case consistency part 4Araq2013-12-271-19/+19
* the compiler can now deal with multiple modules of the same nameAraq2013-09-261-1/+1
* fixes #593Araq2013-09-241-3/+2
* implemented 'import a as b'Araq2013-09-241-17/+40
* made some tests green; implemented 'from module import nil'Araq2013-05-191-1/+3
* get rid of ImportTablePos and ModuleTablePosZahary Karadjov2013-05-121-4/+4
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* merged upstream masterZahary Karadjov2013-01-271-27/+69
|\
| * implements 'export' featureAraq2012-12-011-29/+42
| * implements 'import dir/module' without quotesAraq2012-11-301-3/+5
| * implemented 'import except'Araq2012-11-281-1/+27
| * bugfix: better implict 'items' supportAraq2012-11-281-2/+3
* | CaaS in-memory cachingZahary Karadjov2012-11-281-8/+11
|/
* bugfix: import of pure enumsAraq2012-09-171-1/+1
* first steps towards term rewriting macrosAraq2012-08-301-4/+6
* idetools improvements; preparation of first class iterators; fixes #183Araq2012-08-021-12/+13
* better error handling for better idetools supportAraq2012-07-291-15/+17
* fixes #134Araq2012-06-211-9/+9
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* the current directory is no longer taken into account when resolving module p...Zahary Karadjov2011-12-111-0/+15
* path canonicalization for imported modules, relative paths written in rod filesZahary Karadjov2011-12-111-20/+8
* intsets are now a proper module and part of the stdlibAraq2011-06-141-4/+4
* big repo cleanupAraq2011-04-121-0/+122
tik/mu/commit/html/074write-stream-data.subx.html?h=hlt&id=4a4a392dc7c81b301ad6b760525c5549f2f6644c'>4a4a392d ^
8aeb85f0 ^
4a4a392d ^
8aeb85f0 ^
999c529c ^
ec73ed12 ^
999c529c ^



68df24fa ^
999c529c ^
ec73ed12 ^
999c529c ^





68df24fa ^
999c529c ^
ec73ed12 ^
999c529c ^



68df24fa ^
3350c34a ^
999c529c ^
ec73ed12 ^
999c529c ^




3350c34a ^
999c529c ^
ec73ed12 ^
999c529c ^





3350c34a ^
999c529c ^
ec73ed12 ^
999c529c ^





4a4a392d ^



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