summary refs log tree commit diff stats
path: root/compiler/semdestruct.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-07-30 16:28:58 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-07-30 16:34:42 +0200
commit39ebe2175bd4e8e62d03875d06b24feafd36f8f7 (patch)
treee27cc59112675e052c70c6063f6bcca8e29e103c /compiler/semdestruct.nim
parent8876ed23f1dc6d12a8ae7bf061b7e31c3adf54b4 (diff)
downloadNim-39ebe2175bd4e8e62d03875d06b24feafd36f8f7.tar.gz
compiler almost free of deprecated expr/stmt names
Diffstat (limited to 'compiler/semdestruct.nim')
-rw-r--r--compiler/semdestruct.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semdestruct.nim b/compiler/semdestruct.nim
index 18a1c262f..9ea581f3a 100644
--- a/compiler/semdestruct.nim
+++ b/compiler/semdestruct.nim
@@ -87,7 +87,7 @@ proc destroyCase(c: PContext, n: PNode, holder: PNode): PNode =
     result = nil
 
 proc destroyFieldOrFields(c: PContext, field: PNode, holder: PNode): PNode =
-  template maybeAddLine(e: expr): stmt =
+  template maybeAddLine(e) =
     let stmt = e
     if stmt != nil:
       if result == nil: result = newNode(nkStmtList)
7ea318a05 ^
a6f90d4cd ^


ea3e18bc6 ^
a6f90d4cd ^





66db9de71 ^
a6f90d4cd ^
8494338bc ^
0e7338d65 ^
a6f90d4cd ^

82c009a2c ^
a6f90d4cd ^






97743faa8 ^
e2d38a57e ^



49fa421ba ^

39049e151 ^
a6f90d4cd ^



39049e151 ^
a6f90d4cd ^

6e9a98d1e ^
a6f90d4cd ^
d9cf9b079 ^
d2b45dbe8 ^
39290cf88 ^
15dd3a225 ^
a64d4dc35 ^
8cccaebc2 ^
a64d4dc35 ^
5641be51c ^
c3344862b ^





451129de4 ^

c3344862b ^
6e9a98d1e ^
2781fea9e ^
c3344862b ^
5641be51c ^
02a2180a6 ^
c3344862b ^
bcda71a8a ^


39049e151 ^
56aa1ac5b ^
a6f90d4cd ^

caf787800 ^

a6f90d4cd ^


a6f90d4cd ^

e84834db7 ^


bc37668c5 ^
56aa1ac5b ^
5641be51c ^
a6f90d4cd ^
860cbd310 ^
ca4b971bc ^
3ac6bd8ae ^
c94647aec ^
3ac6bd8ae ^






ba38b83dd ^





87a2ced1b ^
b1ad5fd7d ^
ba38b83dd ^
ca4b971bc ^
f04d21f27 ^
1284827df ^
d83736221 ^
ba38b83dd ^
5ad1acc60 ^










b97a7dbf3 ^
a6f90d4cd ^
c94647aec ^
4b0ba5e3f ^
86556ebfd ^

a6f90d4cd ^
4b0ba5e3f ^
860cbd310 ^
66db9de71 ^



860cbd310 ^
7ea318a05 ^

92c2a51bf ^
860cbd310 ^
a6f90d4cd ^
a64f03230 ^
ca4b971bc ^
39290cf88 ^
a6f90d4cd ^

a6f90d4cd ^
39049e151 ^
92b8fac94 ^
39049e151 ^
f08e90f0d ^
39049e151 ^
42ae2064d ^
ba38b83dd ^
848676cec ^
538b06a12 ^
050789a8f ^


92c2a51bf ^



39049e151 ^
20d56875d ^
7e747d11c ^
20d56875d ^
39049e151 ^
20d56875d ^

a6f90d4cd ^
5641be51c ^
a6f90d4cd ^



328e7a100 ^
d2b45dbe8 ^
a6f90d4cd ^
739b4f214 ^
56aa1ac5b ^
a6f90d4cd ^
1284827df ^
ca4b971bc ^

ba38b83dd ^

87a2ced1b ^
82c009a2c ^

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