Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.CodeDom « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4db765c3319b6192d9d68cd2dc65bb0322a74c8f (plain)
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
2004-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CodeEntryPointMethod.cs: patch by Fawad Halim that makes the entry
	point method public.

2004-02-04  Jackson Harper <jackson@ximian.com>

	* CodeTypeMember.cs: Name is String.Empty if not set.
	* CodeComment.cs: Text is String.Empty if not set.
	
2003-12-23  Jaroslaw Kowalski <jaak@zd.com.pl>

	* CodeAttributeDeclaration.cs:
	* CodeDelegateInvokeExpression:
	  -Added "params" keyword to constructors

2003-08-15  Jaroslaw Kowalski <jarek@atm.com.pl>

	* CodeTypeDeclaration.cs:

	  - TypeAttributes of CodeTypeDeclaration now defaults to
	    TypeAttributes.Public (same as MS implementation)

2003-04-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CodeEventReferenceExpression.cs: fixed typo that prevented event
	name from being set.

2003-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CodeMemberProperty.cs: fixed HasGet and HasSet to actually generate
	code for the property.
	
2002-10-11  Ravi Pratap  <ravi@ximian.com>

	* CodeMethodInvokeExpression.cs : Fix second constructor so that
	the last argument is params - that is what the docs say.

2002-09-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CodeBinaryOperatorType.cs:
	* CodeMemberEvent.cs:
	* CodeParameterDeclarationExpression.cs:
	* CodeTypeMember.cs:
	* CodeTypeReference.cs:
	* CodeTypeReferenceCollection.cs: misc. fixes

2002-05-28  Daniel Stodden  <stodden@in.tum.de>

	* CodeArrayCreateExpression.cs: typo + comments

	* CodeAttributeArgumentCollection.cs: Add() signature fixed

	* CodeAttributeDeclarationCollection.cs: Add() signature fixed

	* CodeCatchClause.cs: ctor signature fixed

	* CodeCatchClauseCollection.cs: Add() signature fixed

	* CodeCommentStatementCollection.cs: Add() signature fixed

	* CodeConstructor.cs: ctor added

	* CodeExpressionCollection.cs: Populate* events: nullref checks
	added

	* CodeNamespace.cs: Populate* events: nullref checks added

	* CodeNamespaceCollection.cs: Add() signature fixed

	* CodeParameterDeclarationExpressionCollection.cs: Add() signature
	fixed

	* CodeStatementCollection.cs: Add() signature fixed, missing
	overload added

	* CodeTypeConstructor.cs: class name typo :P

	* CodeTypeDeclaration.cs: finally figured out how TypeAttributes
	work.

	* CodeTypeDeclarationCollection.cs: Add() signature fixed

	* CodeTypeReference.cs: added MonoTODOs. some corrections on array
	type behavior.

	* CodeTypeReferenceCollection.cs: Add() signature fixed

	* MemberAttributes.cs: just comments
	
2002-05-11  Daniel Stodden  <stodden@in.tum.de>

	* CodeAttributeArgumentCollection.cs: inherits CollectionBase

	* CodeAttributeDeclarationCollection.cs: inherits CollectionBase

	* CodeCatchClauseCollection.cs: inherits CollectionBase

	* CodeExpressionCollection.cs: inherits CollectionBase

	* CodeNamespaceImportCollection.cs: not CollectionBase, but
	matching MS docs

	* CodeParameterDeclarationCollection.cs: inherits CollectionBase

	* CodeStatementCollection.cs: inherits CollectionBase

	* CodeArrayCreateExpression.cs: corrections, completions, whatever

	* CodeAssignStatement.cs: corrections, completions, whatever

	* CodeAttachEventStatement.cs: corrections, completions, whatever

	* CodeAttributeArgument.cs: corrections, completions, whatever

	* CodeAttributeDeclaration.cs: corrections, completions, whatever

	* CodeBaseReferenceExpression.cs: corrections, completions,
	whatever

	* CodeBinaryOperatorExpression.cs: corrections, completions,
	whatever

	* CodeCastExpression.cs: corrections, completions, whatever

	* CodeCatchClause.cs: corrections, completions, whatever

	* CodeCommentStatement.cs: corrections, completions, whatever

	* CodeConstructor.cs: corrections, completions, whatever

	* CodeDelegateCreateExpression.cs: corrections, completions,
	whatever

	* CodeDelegateInvokeExpression.cs: corrections, completions,
	whatever

	* CodeExpression.cs: corrections, completions, whatever

	* CodeFieldReferenceExpression.cs: corrections, completions,
	whatever

	* CodeIndexerExpression.cs: corrections, completions, whatever

	* CodeLinePragma.cs: corrections, completions, whatever

	* CodeMemberEvent.cs: corrections, completions, whatever

	* CodeMemberField.cs: corrections, completions, whatever

	* CodeMemberMethod.cs: corrections, completions, whatever

	* CodeMemberProperty.cs: corrections, completions, whatever

	* CodeMethodInvokeExpression.cs: corrections, completions,
	whatever

	* CodeMethodReturnStatement.cs: corrections, completions, whatever

	* CodeNamespace.cs: corrections, completions, whatever

	* CodeNamespaceImport.cs: corrections, completions, whatever

	* CodeObject.cs: corrections, completions, whatever

	* CodeObjectCreateExpression.cs: corrections, completions,
	whatever

	* CodeParameterDeclarationExpression.cs: corrections, completions,
	whatever

	* CodePrimitiveExpression.cs: corrections, completions, whatever

	* CodePropertyReferenceExpression.cs: corrections, completions,
	whatever

	* CodeStatement.cs: corrections, completions, whatever

	* CodeThisReferenceExpression.cs: corrections, completions,
	whatever

	* CodeThrowExceptionStatement.cs: corrections, completions,
	whatever

	* CodeTryCatchFinallyStatement.cs: corrections, completions,
	whatever

	* CodeTypeDeclaration.cs: corrections, completions, whatever

	* CodeTypeMember.cs: corrections, completions, whatever

	* CodeTypeOfExpression.cs: corrections, completions, whatever

	* CodeTypeReferenceExpression.cs: corrections, completions,
	whatever

	* CodeVariableDeclarationStatement.cs: corrections, completions,
	whatever

	* FieldDirection.cs: corrections, completions, whatever

	* CodeArgumentReferenceExpression.cs: added

	* CodeArrayIndexerExpression.cs: added

	* CodeComment.cs: added

	* CodeCommentStatementCollection.cs: added

	* CodeCompileUnit.cs: added

	* CodeConditionStatement.cs: added

	* CodeDirectionExpression.cs: added

	* CodeEntryPointMethod.cs: added

	* CodeEventReferenceExpression.cs: added

	* CodeExpressionStatement.cs: added

	* CodeGotoStatement.cs: added

	* CodeIterationStatement.cs: added

	* CodeLabeledStatement.cs: added

	* CodeMethodReferenceExpression.cs: added

	* CodeNamespaceCollection.cs: added

	* CodePropertySetValueReferenceExpression.cs: added

	* CodeRemoveEventStatement.cs: added

	* CodeSnippetCompileUnit.cs: added

	* CodeSnippetExpression.cs: added

	* CodeSnippetStatement.cs: added

	* CodeSnippetTypeMember.cs: added

	* CodeTypeConstructor.cs: added

	* CodeTypeDeclarationCollection.cs: added

	* CodeTypeDelegate.cs: added

	* CodeTypeMemberCollection.cs: added

	* CodeTypeReference.cs: added

	* CodeTypeReferenceCollection.cs: added

	* CodeVariableReferenceExpression.cs: added

2001-07-15  Sean MacIsaac  <macisaac@ximian.com>

	* MemberAttributes.cs: Added so rest of classes would compile.

	* FieldDirection.cs: Added so rest of classes would compile.

	* CodeTypeMember.cs: Added so rest of classes would compile.

	* CodeTypeDeclaration.cs: Added so rest of classes would compile.

	* CodeObject.cs: Added so rest of classes would compile.

	* CodeBinaryOperatorType.cs: Added so rest of classes would compile.

2001-07-12  Sean MacIsaac  <macisaac@ximian.com>
	
	* All files implementing IList: Added IsFixedSize property.

	* All files:  Changed CodeDOM to CodeDom.