summary refs log tree commit diff stats
path: root/compiler/semexprs.nim
Commit message (Expand)AuthorAgeFilesLines
...
* Merge branch 'devel' of https://github.com/Araq/Nim into develAraq2014-12-311-1/+3
|\
| * fix #1056Zahary Karadjov2014-12-311-1/+3
* | fixes #1774Araq2014-12-311-1/+1
|/
* fix #1789 (binding to static params during generic proc sigmatch)Zahary Karadjov2014-12-311-1/+1
* release of 0.10.2Araq2014-12-291-3/+4
* fixes #1708, fixes #871Araq2014-12-281-2/+3
* fixes #1120Araq2014-12-251-20/+5
* tuple field names are ignoredAraq2014-12-231-22/+10
* fixed typos so docgen works againAraq2014-12-201-1/+1
* fixes #1655Araq2014-12-171-2/+2
* implemented 'experimental' switchAraq2014-12-051-0/+2
* fixes regression that caused pegs to not compileAraq2014-11-291-0/+1
* implemented procCall builtinAraq2014-11-281-0/+4
* fixes #1657Araq2014-11-271-2/+6
* fixes #1548Araq2014-11-171-34/+5
* fixes a regression that made 'system.compiles' output the produced error mess...Araq2014-11-121-1/+1
* fixes #1612Araq2014-11-061-2/+1
* fixes #1595Araq2014-10-311-5/+16
* nicer error messages (untested)Araq2014-10-261-3/+2
* Merge branch 'devel' into bigbreakAraq2014-10-231-4/+6
|\
| * fixes #1029Araq2014-10-221-4/+6
| * fixes #1551Araq2014-10-111-0/+5
| * minor bugfix for void .compileTime procsAraq2014-09-111-1/+1
* | fixes #1551Araq2014-10-051-2/+3
* | bugfix: 'T = ref T' is an illegal recursive typeAraq2014-10-021-0/+1
* | implemented 'guard' annotationAraq2014-09-211-0/+4
* | nimfix improvementsAraq2014-09-101-1/+1
* | improvements for nimfixAraq2014-09-101-2/+14
* | 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-0/+1
* | some improvements for nimfixAraq2014-09-091-3/+3
* | minor bugfix for void .compileTime procsAraq2014-08-311-1/+1
* | updated the compiler to use the new symbol namesAraq2014-08-281-1/+1
* | Nimrod renamed to NimAraq2014-08-281-1/+1
|/
* fixes #1380Araq2014-08-191-9/+8
* fixes #1431Araq2014-08-121-2/+3
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-111-1/+3
|\
| * Merge pull request #1467 from Varriount/fix-1424Andreas Rumpf2014-08-101-1/+3
| |\
| | * Update semexprs.nimVarriount2014-08-101-5/+1
| | * Fix #1424 some moreClay Sweetser2014-08-081-1/+5
| | * Fix #1424Clay Sweetser2014-08-071-0/+2
* | | distinguish between 'defined' and 'declared'Araq2014-08-111-4/+10
|/ /
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-101-0/+2
|\ \
| * | Fixes #1435Clay Sweetser2014-08-091-0/+2
* | | progress on 'spawn'Araq2014-08-101-3/+3
|/ /
* / 'parallel' statement works againAraq2014-08-081-1/+1
|/
* fixes #1355Araq2014-07-151-1/+2
* fixes #904Araq2014-07-011-0/+4
* fixes #1285Araq2014-06-301-13/+13
* Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-061-3/+14
|\
| * big rename: Promise -> FlowVarAraq2014-06-061-7/+7
ompiler/condsyms.nim?h=devel&id=5f515410afb5c47df114652fbd96f62079c08c30'>5f515410a ^
c94647aec ^
ab48d7901 ^
114da04cb ^
21cbfd72e ^
e506c1e0e ^
a03a8e80e ^
dfb020b17 ^
4005f0d0e ^
c3344862b ^
c0a2e2ed9 ^
6a0e87eb3 ^
e70294dff ^





a0eca7518 ^

a6682de00 ^
9ffec7930 ^
19cab9fa5 ^
06dfd3161 ^
63d1a0289 ^
fb58066b6 ^
e2d80b15a ^
92163fa33 ^

58a1eec96 ^
025ca660f ^
31bb67a30 ^
4fc7fcb77 ^
4d3f3513e ^
bbe4cf470 ^
159c06e04 ^
ceadf54d7 ^
2abc936d5 ^
63db2b19b ^
7d5e6b016 ^
4ec2f7424 ^
e0ef85913 ^
9d51197aa ^

0014b9c48 ^
d1d141b13 ^
a95b6391f ^
2cca38d33 ^
cfff454cf ^
0d23419e6 ^

0448f30fd ^
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