ChangeLog: Updated ChangeLog.
[mono.git] / mcs / mbas / ChangeLog
1 2004-08-30 Bernie Solomon <bernard@ugsolutions.com>
2         * class.cs (FindMembers): filter on modflags
3         for constructors & constructors are never inherited
4
5         * decl.cs (SetupCache): constructors are not
6         inherited
7
8 2004-08-27 Anirban Bhattacharjee <banirban@novell.com>
9         * driver.cs: bug fixing - #63580
10
11 2004/08/19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
12         * testmbas/WriteOk.vb : Use Mono.GetOptions from VB.NET
13         * Makefile : exercise new option processing in test program [make-run-local target]
14
15 2004-08-26 Bernie Solomon <bernard@ugsolutions.com>
16         * mb-parser.jay: rework parsing of ParamArray parameters
17
18 2004-08-23 Bernie Solomon <bernard@ugsolutions.com>
19         * mb-parser.jay: cope with more varieties of array declarations
20
21 2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
22         * statement.cs: Bug fixing - Prevent AddHandler from getting resolved second time. This is critical for ASP programs with VB.
23
24 2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
25         * expression.cs: Bug fixing - reference to the current type is fixed during BaseAccess resolution
26
27 2004/08/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
28         * driver.cs : Some cleanup, also renamed checked option as it was removeintchecks in disguise
29
30 2004-08-18 Anirban Bhattacharjee <banirban@novell.com>
31         * mb-parser.jay: MyBase support in Handles clause e.g. 
32                                 Sub EH() Handles MyBase.E
33
34 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
35         * mb-parser.jay: Trivial fix (#63213)
36
37 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
38         * class.cs:
39         * typemanager.cs:
40                 -Bug fixed to resolve the ReadOnly properties from base class
41                 -Fixed bug in resolving properties from different assembly
42
43 2004-08-14 Bernie Solomon <bernard@ugsolutions.com>
44         * mb-parser.jay: fix block used as body of For Each
45
46 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
47         * expression.cs: Bug fixing for compiling VB script generated by ASP page - AddressOf operator in a method argument will resolve methods outside assembly
48
49 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
50         * class.cs: bug fixing to get PropertyE.vb test running - search of overridable property in base class was failing
51
52 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
53         * typemanager.cs: Little correction in my last checked-in code - removed unnecessary return value from ExpandAllInterfaces function
54
55 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
56         * class.cs: Trivial bug fixing to get test InterfaceB.vb going
57
58 2004-08-13 Rob Tillie <Rob.Tillie@student.tul.edu>
59         * ecore.cs: added runtime conversion from string to DateTime (fixes test 13329).
60         
61 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
62         * class.cs:
63         * typemanager.cs:
64         * pending.cs:
65                 Multiple interface inheritance implemented - fix for getting InheritanceD.vb working in bteasts         
66
67 2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
68         * mb-parser.jay: Implements support in Abstract methods
69
70 2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
71         * class.cs: Support for abstract method resolution
72         * pending.cs: Type of pending_implementations is set to base type
73                       Changed method names IsInterfaceIndexer and IsInterfaceMethod to IsAbstractIndexer and IsAbstractMethod respectively to make them more meaningful
74
75 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
76         * mb-parser.jay: first cut at TypeOf ... Is
77
78 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
79         * expression.cs:
80         * ecore.cs: More enum changes to handle
81         implicit conversions better
82
83 2004-08-11 Anirban Bhattacharjee <banirban@novell.com>
84         * mb-parser.jay: Interface inheritance made better
85
86 2004-08-09  Jambunathan K  <kjambunathan@novell.com>
87         * mb-parser.jay: Sanitized parser's generic error message 
88
89 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
90         * enum.cs: Enum members became enum type now, instead of underlying type
91
92 2004-08-07 Bernie Solomon <bernard@ugsolutions.com>
93         * mb-parser.jay: Implement GetType(x) 
94         implement Is as equals for the moment so it can be used
95
96 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
97         * mb-parser.jay: Check for empty enum declaration
98
99 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
100         * class.cs: 
101         * mb-parser.jay:
102                 Multiple Implements for a particular type member got implemented
103
104 2004-08-06  Bernie Solomon  <bernard@ugsolutions.com>
105
106         * support.cs: Make ReflectionParameter behave
107         like InternalParameter for byref args.
108         * expression.cs: Cope with byref args in
109         an imported DLL
110
111 2004-08-06  Jambunathan K  <kjambunathan@novell.com>
112         * mb-parser.jay: Changed expression grammar so that it now has a
113           better semblance to those defined in section 11 of VB.NET spec.
114           The 'expression' rule as it is now could possibly be buggy. So
115           another iteration is a must.
116
117 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
118         * mb-parser.jay: Small bug fix in Event grammar
119
120 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
121         * class.cs: Event still needed to have a constructor which takes value of Implements clause.
122         * mb-parser.jay: Passing Implements clause value to the constructor
123
124 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
125         * decl.cs:
126         * rootcontext.cs:
127                 Exception number made aligned to VB .net
128
129 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
130         * class.cs: Improvements in the implementation of Implements clause in Type members
131
132 2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
133         * mb-parser,jay: Implements clause added to Event grammar
134
135 2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
136         * mb-parser.jay: Interface event declaration grammar rewritten
137
138 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
139         * class.cs: Introduced check for valid interface name in Implements clause. 
140
141 2004-08-04  Jambunathan K  <kjambunathan@novell.com>
142         * mb-tokenizer.cs: 
143         * mb-parser.jay: 
144
145         1) Fixed the Attributes grammar starting with
146            opt_attributes. Introduced new rules starting with
147            opt_global_attributes rule - section 5.2 of VB.NET spec
148
149         2) Introduced new Tokens that correspond to reserved but unused
150            VB.NET keywords. Added some comments as appropriate in the
151            keywords hashtable of tokenizer - section 2.3 of VB.NET spec.
152
153         3) Corrected 'imports_term' - section 6.3.1 & 6.3.2 of VB.NET
154            spec.
155
156         4) Introduced opt_argument_list - section 5.2 of VB.NET spec
157
158         5) Corrected namespace_declaration - section 6.4.1 of VB.NET spec
159         
160
161 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
162         * mb-parser.jay: Added support for modifiers and attributes in interface member grammar
163
164 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
165         * mb-parser.jay: Property types made optional
166
167 2004-08-03 Anirban Bhattacharjee <banirban@novell.com>
168         * mb-parser.jay: Interface method and property grammar got changed
169                          Support for multiple implements in class 
170         * interface.cs: Interface class has got changed
171                         All other interface types have been removed
172         * class.cs: Property's Define and CheckBase method changed significantly to be in sync with Interface
173         * pending.cs: few related changes 
174         * attribute.cs: few related changes
175
176 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
177         * mb-parser.jay : Some correction as pointed by Jambunathan, 
178                 to allow preprocessor directives after a label that may 
179                 leave it orphaned (without a explicit statement)
180         * testmbas/WriteOK.vb : some vb code to test this case
181
182 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
183         * mb-parser.jay : Some correction as pointed by Jambunathan, 
184                 to allow intermixing preprocessor directives between 
185                 the label and it's associated statement
186
187 2004-08-02  Jambunathan K  <kjambunathan@novell.com>
188         * mb-tokenizer.cs: Oops. Also pulled out all of the old
189         pre-processor code that is no more used.
190
191 2004-08-02  Jambunathan K  <kjambunathan@novell.com>
192         * mb-tokenizer.cs: Fixed a bug where line nos were 
193         failing to get incremented when the line continuation 
194         character was appearing by itself on contiguous lines.
195         
196         * mb-parser.jay: Fixed the #ExternalSource actions
197         so that ExternalSourceDirectivesC4.vb compiles and 
198         reports source & line nos as expected.
199
200         * location.cs: Replaced the existing unintuitive, not
201         so efficient implementation of struct Location {} with 
202         the one available in mcs with one minor difference: The
203         number of bits reserved for a file index in the Token
204         is statically fixed at 8 bits.
205
206 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
207         * mb-parser.jay : Revised patch from João Viegas for the labeled_statement accepting integer literals as labels
208
209 2004-07-30  Jambunathan K  <kjambunathan@novell.com>
210         * mb-parser.jay: Oops. Reversed unintended checkin.
211         * mb-tokenizer.cs: Added comment in Tokenizer() 
212         * mb-parser.jay: Fixed miscellaneous bugs in handling of 
213         pre-processor directives. There are two positive test 
214         cases that fail currently: ExternalSourceDirectivesC4.vb
215         and RegionDirectivesC1.vb
216
217 2004-07-30  Raja R Harinath  <rharinath@novell.com>
218
219         * mb-parser.jay (IfElseStateMachine.State, IfElseStateMachine.Token): 
220         Remove [Flags] attribute.
221
222 2004-07-30  Jambunathan K  <kjambunathan@novell.com>
223         * mb-parser.jay: 
224         * mb-tokenizer.cs: Added support for #region, #externalsource
225         and conditional compilation pre-processor directives.
226         Conditonal directives currently accept only boolean literals
227         as conditonal expressions. 
228         
229         * mb-parser.jay: The original checkin hits a bug in mcs but
230         compiles fine with csc. This checkin is to workaround the mcs
231         bug so that cvs builds are not broken.
232         
233         
234 2004/07/26  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
235         * mb-parser.jay : First try at SyncLock Statement #53230
236
237 2004-07-22 Anirban Bhattacharjee <banirban@novell.com>
238         * argument.cs:
239         * expression.cs:
240                 Little betterment in resolution of parameter with Addressof operator in method argument
241
242 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
243         * expression.cs: Resolution of fully qualified type names - bug fixed
244
245 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
246         * assign.cs: Added new argument to Expression.ConvertExplicit function call
247
248 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
249         * expression.cs: Fixed resolution of overloaded functions with delegate as parameter
250         * ecore.cs: Changes made to stop program getting into an endless loop on not able to cast types of source to destination object.
251         * statement.cs: Added new argument to Expression.ConvertExplicit function call
252
253 2004-07-18 Anirban Bhattacharjee <banirban@novell.com>
254         * argument.cs: Introduced AddressOf argument type for tracking AddressOf operator in method parameter
255         * expression.cs: A parameter with AddressOf operator will get converted to Delegate before overload resolution
256         * mb-parser.jay: Omitted two delegate creation expression grammar. This is now taken care by normal object creation expressions since Argument is capable of handling AddressOf operator now
257                 This is a fix for bug #59555
258
259 2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
260         * driver.cs : Implemented support for -pkg to match mcs (bug #58673)
261
262 2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
263         * driver.cs : started implementing -pkg support to match mcs (bug #58673), also corrected multiplicity for addmodule option
264
265 2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
266         * driver.cs: Added support for AddModule compiler option
267         * typemanager.cs: AddModule function will now store list of Modules instaed of ModuleBuilders. This change has been made to get LoadModule function working of driver.cs.
268
269 2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
270         * driver.cs: Compilation to module is supported now
271
272 2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
273         * mb-parser.jay:
274         * class.cs:
275                 Default modifier for constructor is set to Public
276
277 2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
278         * mb-parser.jay: Parentheses in method declarations made optional incase of empty parameter list. Thus, a method "Sub s()" can also be declared as "Sub s"
279
280 2004-07-07 Anirban Bhattacharjee <banirban@novell.com>
281         * expression.cs: bug fixed - 60399
282
283 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
284         * mb-parser.jay: Small correction in delegate declaration grammar
285
286 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
287         * mb-parser.jay: modified RemoveHandler function
288         * statement.cs: Added RemoveHandler statement class
289
290 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
291         * mb-parser.jay: Modified grammar for several syntax of AddressOf operator
292
293 2004/06/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
294         * typemanager.cs : GetPertinentStandardModules receives the array now with params modifier to help usage
295         * ecore.cs : correcting lookup of semi-qualified standard modules members - A little better but not there yet
296
297 2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
298         * mb-parser.jay: Grammar added for RemoveHandler statement
299
300 2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
301         * mb-parser.jay:
302         * expression.cs:
303                 Added support for statement like
304                         delgate_name = AddressOf sub_name
305
306 2004-06-09  Raja R Harinath  <rharinath@novell.com>
307
308         * Makefile (HAS_TEST): Remove.
309         (run-test-local): Move rule to and depend on ...
310         (run-mbas-test): ... this.
311
312 2004-06-08 Anirban Bhattacharjee <banirban@novell.com>
313         * mb-parser.jay:
314         * statement.cs:
315                 Few exception checks for Event
316
317 2004-06-07 Anirban Bhattacharjee <banirban@novell.com>
318         * mb-parser.jay: Resolved the problem in Sub statement with Handles cluse
319         * class.cs: Added a AddEventHandler function and a EventHandler readonly property. Also modified define of constructor to accommodate Handlers clause.          
320                     If one initialize a event handler as
321                         Sub Handler() Handles x.Event
322                     The handler will be initialized by the constructor of the corresponding class by calling AddHandler.
323
324 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
325         * mb-parser.jay: Modified WithEvents grammar    
326
327 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
328         * class.cs: - NotOverridable modifier support added to Property
329                     - Few overriding related checks put on Property
330  
331 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
332         * decl.cs: Check for duplicate member name within same container
333
334 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
335         * class.cs: changed exception number in event grammar
336
337 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
338         * mb-parser.jay: RaiseEvent grammar fixed to get it working
339
340 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
341         * driver.cs: fixed bug - 59540
342
343 2004-06-01 Anirban Bhattacharjee <banirban@novell.com>
344         * mb-parser.jay: Improved event declaration grammar
345
346 2004/05/31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
347         * AssemblyInfo.cs : Anirban is and author too
348
349 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
350         * delegate.cs:
351         * expression.cs:
352                 Few exception checks for delegete
353
354 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
355         * mb-parser.jay:
356         * delegate.cs:
357                 Few more fixes in delegate grammar              
358
359 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
360         * mb-parser.jay: Changed Delegate instantiation grammar to get it working
361
362 2004-05-26 Anirban Bhattacharjee <banirban@novell.com>
363         * mb-parser.jay:
364         * class.cs:
365                 Few property related checks applied
366
367 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
368         * class.cs: Check for ReadOnly and WriteOnly modifiers added to property
369
370 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
371         * mb-paresr.jay: Support for abstruct property is added
372
373 2004-05-24  Raja R Harinath  <rharinath@novell.com>
374
375         * Makefile (PROGRAM_INSTALL_DIR): Install mbas into
376         $(prefix)/lib/mono/1.0.
377
378 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
379         * mb-parser.jay: few Property related grammar changes
380
381 2004-05-14 Anirban Bhattacharjee <banirban@novell.com>
382         * mb-tokenizer.cs: Bug fixed - Got Property working
383
384 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
385         * mb-parser.jay: Support added for attaching Attributes in methods
386
387 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
388         * AssemblyInfo.cs : Correcting information and version number
389
390 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
391         * enum.cs: bug fixing - setting one enum member to another
392
393 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
394         * enum.cs:
395         * expression.cs:
396                 Implemented check for access modifier in enum
397
398 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
399
400         * typemanager.cs: Property.GetGetMethod() does not return the method if it
401         is private (it did until now because of a bug). Make sure it works as it 
402         worked before the fix.
403
404 2004-04-28 Anirban Bhattacharjee <banirban@novell.com>
405         * expression.cs: fixed bug to get enum running
406         * enum.cs: handling several negative scenarios 
407                    Changed several exception numbers
408         * assign.cs: Changed exception number
409
410 2004-04-26  Jackson Harper  <jackson@ximian.com>
411
412         * Makefile: Get libs from default profile directory.
413         
414 2004-04-23 Anirban Bhattacharjee <banirban@novell.com>
415         * mb-parser.jay: Grammar changes for array
416         * expression.cs: exception number changed for "Incorrectly structured array initializer" exception
417
418 2004-04-17 Anirban Bhattacharjee <banirban@novell.com>
419         * mb-parser.jay:
420         * class.cs:
421         * const.cs
422                 a little better structure grammar
423
424 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
425         * mb-parser.jay: few clean-ups
426
427 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
428         * class.cs: Duplicate entry point exception number changed
429                     Checked delaration of Types, fields, methods as Protected if they are member of Module type
430         * const.cs: Checked delaration of constructor as Protected if it is member of Module type
431         * driver.cs: exception number is changed for "Entry point does not exist" exception
432
433 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
434         * mb-parser.jay: Classes can't be delared static impicitly as other module members
435
436 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
437         * class.cs: Couple of bug fixes in defining default static constructor, partially imposed by the fix earlier
438
439 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
440         * class.cs: Added support for Shadows modifier in Variables
441
442 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
443         * const.cs: Added support for Shadows modifier in constant
444
445 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
446         * expression.cs: Removed the check which was stoping type instances to access the shared variables
447
448 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
449         * modifiers.cs: changed exception number for invalid modifiers exception
450
451 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
452         * mb-parser.jay: Removed 'static_constructor_declaration' - this is not required as 'constructor_declaration' implementation is good enough to handle static constructors too
453         * class.cs: Handling couple of negative scenarios related to static constructors and bug fixes
454
455 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
456         * class.cs: Couple of negative scenario handling
457
458 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
459         * mb-parser.jay: Few clean-up
460
461 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
462         * mb-parser.jay: Bug fixed - Base class ctor was getting called twice when called explicitly from the derived class ctor as MyBase.New
463
464 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
465         * mb-parser.jay: Fixed bugs for calling ctor from another ctor in the same class by using statments like
466                 Me.New 
467                 or 
468                 MyClass.New
469
470 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
471         * mb-tokenizer.cs : Better error message when dealing with date literals\r
472
473 2004-04-06 Anirban Bhattacharjee <banirban@novell.com>
474         * class.cs:
475         * ecore.cs:
476         * expression.cs:
477         * modifiers.cs:
478         Changed/added serveral Accessibility related expections 
479
480 2004-04-05 Anirban Bhattacharjee <banirban@novell.com>
481         * class.cs:
482         * decl.cs:
483         * expression.cs:
484         * pending.cs: 
485         Several error messages and numbers are changed in all the above four classes
486
487 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
488         * delegate.cs: changed default access modifier
489         * enum.cs: changed default access modifier
490         * interface.cs: changed default access modifier
491         * modifiers.cs: extension of bug fixed for getting NotOverridable modifier working for methods
492
493 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
494         * class.cs: Changed exception messages and their numbers to align better with VB
495                     Changed default access modifier of method to Public
496                     Bug fixed to get NotOverridable modifier working
497         * decl.cs:  Changed exception messages and numbers
498
499 2004-03-25 Anirban Bhattacharjee <banirban@novell.com>
500         * class.cs: bug fixing - creating default constructor when no constructor is specified
501         Few modifiers are changed to align with Vb
502
503 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
504         * typemanager.cs :  being more carefull with null arguments in some places, 
505                                                 null checking in GetPertinentStandardModules() loop
506         * namespace.cs : a helper ToString override 
507         * ecore.cs : Dealing with finding more than a pertinent standard module having a global member
508         * testmbas/WriteOk.vb : Exercising correct standard module resolution
509     NOTE: Almost there for Bug #52067 - just the semi-qualified case isn't working 
510
511 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
512         * mb-parser.jay: handled implicit static modifier for module members in const
513         * const.cs: changed supported modifiers
514
515 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
516         * modifiers.cs: Return name of the modifiers' changed to vb specific
517
518 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
519         * ecore.cs : now it gets the correct list of namespaces in scope (either imported or current) Almost there for Bug #52067 
520
521 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
522         * mb-parser.jay: One more negative scenario is addressed in const grammar
523
524 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
525         * const.cs: Change type of constant to the type of its value if no explicit type declaration found
526
527 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
528         * mb-parser.jay: Grammar for declaring constant inside block is changed
529
530 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
531         * const.cs: Changed exception numbers
532
533 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
534         * mb-parser.jay: Changed grammar for constant
535
536 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
537         * mb-tokenizer.cs : handling better linebreak, specially when delaing with literals and preprocessing directives 
538
539 2004-03-16 Anirban Bhattacharjee <banirban@novell.com>
540         * mb-parser.jay: 
541                 - changed variable declaration grammar and added support for multiple variables declartion under single type e.g. dim x, y as integer
542                 - added few exception checks in variables
543                 - added one exception check in property
544         
545 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
546         * sourcebeingcompiled.cs : new source/class to hold things previously contained in namespaces.cs 
547                         because in C# they were semantically tied to nested namespaces, and in VB.NET 
548                         they can occur only once per file.
549         * mbas.exe.sources: added sourcebeingcompiled.cs
550         * mb-parser.jay: reference RootContext.Sourcebeingcompiled things
551         * namespace.cs: move pieces to sourcebeingcompiled
552         * rootcontext.cs: use SourceBeingCompiled class
553         * decl.cs: reference RootContext.Sourcebeingcompiled things
554
555 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
556         * mb-tokenizer.cs: Support for '-' delimiter in DateTime
557
558 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
559         * report.cs: Formatted warning thrown
560
561 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
562
563         * class.cs
564         * decl.cs
565         * modifiers.cs
566         * mb-parser.jay
567         Added Overloads and Shadows modifiers to Function and Sub
568         Fixed few other modifier related problems in Function and Sub
569
570 2004-01-07  Nick Drochak <ndrochak@ieee.org>\r
571 \r
572         * genericparser.cs:\r
573         * mb-tokenizer.cs: \r
574         * row.cs: Eliminate warnings about unused variables.\r
575 \r
576 2004/01/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
577         * typemanager.cs :      correcting translation of System types to language types, 
578                         also temporarily circunventing a exception in ModuleBuilder.GetType inside LookupTypeReflection,
579                         corrected many ` characters to ' in error messages
580         * testmbas/WriteOK.vb : testing newly implemented IsNumeric global function\r
581
582 2004-01-04  David Sheldon <dave-mono@earth.li>
583
584   * expression.cs: Added matching ")" to error message for 
585   CS0077
586
587 2003/12/23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
588         * driver.cs : added stubs for options "/netcf /sdkpath:path"\r
589         * namespace.cs, decl.cs, rootcontext.cs : use hashtable to avoid duplicate importation of namespaces \r
590           (especially between command-line option /imports and explicit Import clauses), what manifested itself as\r
591           error messages for ambiguous names that where in truth identical\r
592         * statement.cs : trying to fix the 'exit' statement DoEmit, for "Exit Sub"\r
593         * mb-parser.jay, mb-tokenizer.cs : initial support for type_characters (dim az$ = dim az as string)\r
594 \r
595 2003/12/18  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
596         * class.cs : case-sensitiveness when tracking the entry-point removed\r
597         * driver.cs : IsSWFApp would try to pass a null 'mainclass' to the hashtable indexer, throwing an exception\r
598                 (even for correct programs because of the bug above). Now this condition is tested before\r
599 \r
600 2003/12/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
601         * ecore.cs : problems trying to implicit convert OMITTED arguments, solved\r
602         * mb-tokenizer.cs, mb-parser.jay, typemanager.cs : support for the date primitive type and date literals\r
603         * testmbas/WriteOK.vb: testing date type and date literal\r
604 \r
605 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
606         * driver.cs : /imports option now is implemented\r
607         * mb-parser.jay: support for pre-imported namespaces (the default Microsoft.VisualBasic and those from /imports)\r
608         \r
609 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
610         * mb-tokenizer.cs : integer literal (Hex starts with &H not 0x), handle Octal literals (&O)\r
611         *       handle unicode specialized double-quotes in string literals     \r
612         *       corrected some mishandling of conversions in numeric literals\r
613         *       implemented support for char literals ("z"c)\r
614         * Makefile : verbose target uses verbose argument\r
615         * testmbas/WriteOK.vb: many tests for literals implemented\r
616         * literal.cs: correcting lack of a ShortLiteral class\r
617         * mb-parser.jay: removed support for unsigned int literals, added support for short int literals\r
618         \r
619 2003/11/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
620         * *.cs, mb-parser.jay: Switched all from defining/using namespace Mono.CSharp to Mono.MonoBASIC \r
621         * location.cs: SymbolDocument now returns a SymbolDocumentWriter using the right (SymLanguageType.Basic) GUID\r
622         \r
623 2003/10/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
624         * genericparser.cs: \r
625             Don't print exception when a file is not found to be parsed\r
626                 File extensions not matched are now processed with the default parser\r
627                 Better handle file/directory not found exceptions, and use Report.Error in that case\r
628         * added defaultparserattribute.cs\r
629         * mb-parser.jay : Mono.MonoBASIC.Parser is now the [DefaultParser]\r
630         * location.cs version 1.4 recovered (Marco Ridoni had it overwritten with an older version)\r
631         * mb-tokenizer.cs, rootcontext.cs, tree.cs: Location constructor needs column number now\r
632 \r
633 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
634         * .cvsignore: WHOOPS\r
635 \r
636 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
637         * .cvsignore: some more files to ignore\r
638 \r
639 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
640         * mb-tokenizer.cs, driver.cs: Back to Linux line-endings, SORRY\r
641 \r
642 2003/09/16  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
643         * Makefile: corrected testing in Windows/Cygwin (from mbas.exe to ./mbas.exe), because it was getting the installed compiler instead of the compiled one\r
644         * mb-tokenizer.cs: Redoing: Preprocessor directives must be case-insensitive (many .ToLower() used)\r
645         * driver.cs: No more 'linkpaths' option, use 'libpath' instead\r
646 \r
647 2003/09/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
648         * driver.cs: Corrected handling of FileNotFoundException in LoadAssembly(), according to Bernie Solomon's patch\r
649 \r
650 2003/08/13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
651         * mb-parser.jay: ReDim statement parses many variables now (but initializers aren't allowed)\r
652                                          Erase statement implemented\r
653                                          Lots of garbage (never reduced rules) deleted\r
654                                          Reduce/Reduce problems eliminated (where due to having opt_modifiers duplicated inside property_declaration rule)\r
655         * statement.cs : class Redim is prepared to have ReDim Preserve copying code called,\r
656                                          but we need to check if that code is lying in Microsoft.VisualBasic.dll\r
657                                          New class Erase\r
658 \r
659 2003-07-26  Ben Maurer  <bmaurer@users.sourceforge.net>\r
660         \r
661         * statement.cs: Make Math.XXX System.Math.XXX, to fix the build.\r
662         \r
663 2003-07-20  Peter Williams  <peter@newton.cx>\r
664 \r
665         * Makefile: Remove the test target which conflicted with\r
666         the global target. (Change confirmed with Rafael.)\r
667 \r
668 2003-04-02  Duncan Mak  <duncan@ximian.com>\r
669 \r
670         * mb-parser.jay: Temporarily remove the references to\r
671         Class.MustOverride to fix the build.\r
672 \r
673 2003/03/29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
674         * mb-parser.jay: corrected some module related rules\r
675         * location.cs : now handles column information\r
676         \r
677 2003/03/11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
678         * makefile.gnu : use $RUNTIME for all targets\r
679                                          actually run the compiled program on 'test-gtk' target \r
680         * mb-tokenizer.cs : no escaping of chars allowed in VB.NET (old mcs code removed)\r
681                                                 handle doubled-doublequotes (VB idiom to escape a doublequote) \r
682         \r
683 2003/03/04  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
684         * mb-parser.jay: added rule for Imports with alias\r
685         * mb-parser.jay: Friend (internal) modifier was missing,\r
686                                          Shared modifier was expecting Static token erroneously\r
687                                          Modules must accept only a static constructor rule added\r
688                                          Constant declaration rule added\r
689         * makefile & makefile.gnu : actually run the compiled program on test target \r
690 \r
691 2003/03/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
692         * mb-tokenizer.cs : new semi-keywords: Compare, Explicit, Strict, On, Off, Binary, Text\r
693         * mb-parser.jay: tokens for above semi-keywords, and rules for option directives\r
694         * driver.cs: integrates command line options with parser flags for option directives\r
695         * makefile & makefile.gnu : added 'verbose' target that uses --verbose switch to compile \r
696           the test source and pipes it through 'less', also added a Extended Syntax source\r
697 \r
698 2003/02/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
699         * class.cs : As, per vbc, there is a rootnamespace now, --main wasn't working anymore, \r
700                                  because it was expecting a fully qualified class name. \r
701                                  We now also test the name passed prepended by the rootnamespace.\r
702         * class.cs : Corrected warning "The keyword new is required on `Mono.CSharp.Property.Emit'\r
703                                  because it hides inherited member `PropertyBase.Emit'", by making it virtual\r
704                                  in PropertyBase and override in Property.\r
705         * makefile.gnu : test and test-gtk targets now depend on mbas.exe\r
706                                  \r
707 \r
708 2003/02/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
709         * mb-parser.jay : eliminated reduce/reduce conflict on duplicated rank_specifier rule\r
710           by renaming the one using brackets to bracketed_rank_specifier\r
711 \r
712 2003/02/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
713         * added argument.cs (extracted from expression.cs) makefiles corrected\r
714         * mb-parser.jay : eliminated reduce/reduce conflict on opt_argument_list rule, \r
715           by putting and if to make a argument list with just an empty argument list become an empty list\r
716 \r
717 2003/02/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
718         * rootcontext.cs : added RootNamespace member\r
719         * mb-parser.jay : use RootContext.RootNamespace to initialize outermost namespace\r
720         * driver.cs : \r
721                 - implement rootnamespace parameter, and defaults it to the output file name\r
722                 - like vbc if no source file name is provided just show help\r
723 \r
724 2003/01/22  Nick Drochak <ndrochak@gol.com>\r
725         * makefile: Use csc compiler in here. makefile.gnu assumes mono/mcs\r
726 \r
727 2003-01-13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
728         * added cleanup method to tokenizer as needed but modifications made in jay\r
729 \r
730 2003-01-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
731         * changed test target in makefile work\r
732         * corrected authors list to include Marco\r
733 \r
734 2002-10-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
735         * merged many sources from mcs/mcs, to resync\r
736 \r
737 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
738         * using Mono.GetOptions preliminar support for response files, \r
739           changed the makefile target 'test' for use o response file testmbas/filelist\r
740 \r
741 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
742         * merged many sources from mcs/mcs, to resync\r
743 \r
744 2002-10-05  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
745         * merged many sources from mcs/mcs, to resync\r
746 \r
747 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
748         * merged many sources from mcs/mcs, to resync\r
749 \r
750 2002-09-03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
751         * integrated new version of Mono.GetOptions (reflection/attributes-based)\r
752 \r
753 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
754         * merged expression.cs from mcs/mcs, to resync\r
755 \r
756 2002-08-29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
757         * merged assign.cs, attribute.cs, class.cs, codegen.cs, const.cs, decl.cs, delegate.cs, ecore.cs, enum.cs,\r
758         expression.cs, interface.cs, pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and \r
759         typemanager.cs from mcs/mcs, to resync\r
760 \r
761 2002-08-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
762         * added "test" target to makefile\r
763         * merged assign.cs, attribute.cs, cfold.cs, class.cs, codegen.cs, const.cs, constant.cs, \r
764           decl.cs, delegate.cs, ecore.cs, enum.cs, expression.cs, interface.cs, modifiers.cs, parameter.cs, \r
765           pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and typemanager.cs from mcs/mcs, to resync\r
766 \r
767 2002-07-14  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
768         * merged assign.cs, class.cs, ecore.cs, expression.cs, statement.cs and typemanager from mcs/mcs, to resync\r
769 \r
770 2002-07-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
771         * merged attribute.cs, ecore.cs, namespace.cs and statement.cs from mcs/mcs, to resync\r
772 \r
773 2002-07-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
774         * merged attribute.cs, class.cs, codegen.cs, ecore.cs, expression.cs, \r
775           modifiers.cs, namespace.cs, report.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync\r
776         * changed driver.cs to follow mcs lead on error/warning counting and reporting\r
777 \r
778 2002-06-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
779         * merged attribute.cs, class.cs, ecore.cs, rootcontext.cs, support.cs and typemanager.cs from mcs/mcs, to resync\r
780         * makefile makes csc reference a copy of Mono.GetOptions.dll (mbas.sln now compiles to mbas dir instead of mbas/bin/Debug)\r
781 \r
782 2002-06-21  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
783         * merged attribute.cs, class.cs, interface.cs, expression.cs, ecore.cs, \r
784           modifiers.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync\r
785         * added pending.cs from mcs/mcs, to resync\r
786 \r
787 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
788         * merged assign.cs, attribute.cs, enum.cs and namespace.cs from mcs/mcs, to resync\r
789         * namespace.cs needed some fixing, because CSharpParser isn?t available\r
790 \r
791 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
792         * merged delegate.cs, ecore.cs, typemanager.cs and rootcontext.cs from mcs/mcs, to resolve expression.cs blues\r
793 \r
794 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
795         * oops merged expression.cs from mcs/mcs is breaking my make\r
796         * driver.cs, assemblyinfo.cs wasn?t ready for prime time (offending lines were commented out)\r
797 \r
798 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
799         * merged expression.cs from mcs/mcs\r
800 \r
801 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
802         * corrected Module.TypeAttr property getter in module.cs\r
803         \r
804 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
805         * merged typemanager.cs from mcs/mcs\r
806 \r
807 2002-06-10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
808         * merged expression.cs and interface.cs from mcs/mcs\r
809 \r
810 2002-06-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
811         * merged const.cs, enum.cs, expression.cs and typemanager.cs from mcs/mcs\r
812     * comments on module.cs\r
813 \r
814 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
815         * merged class.cs, attribute.cs from mcs/mcs\r
816 \r
817 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
818         * merged class.cs, enum.cs, expression.cs, interface.cs, rootcontext.cs and typemanager.cs from mcs/mcs\r
819         * added module.cs (class Mono.MonoBASIC.Module - derived from Mono.CSharp.Class)\r
820         * added System.XML and Microsoft.VisualBasic to the default config (driver.cs)\r
821         \r
822 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
823         * merged class.cs and ecore.cs from mcs/mcs\r
824 \r
825 2002-06-02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
826         * copied methods MakeName and CheckDef from mcs\cs-parser.jay to GenericParser.cs \r
827           where they are inherited by mb-parser.jay/cs\r
828         * put some code on the Module rule in mb-parser.jay to at least generate a class in the assembly,\r
829           if I jump over the entry-point check code, while debugging\r
830         \r
831 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
832         * class Mono.MonoBASIC.Tokenizer now handles \r
833                 - all valid line-terminators (CR, LF, CRLF, LS and PS)\r
834                 - escaped identifiers (like [Integer])\r
835                 - old-fashioned comments syntax (REM Blah-Blah)\r
836 \r
837 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
838         * modified mbas.ico to be a small version of mono?s logo (see mcs\MonoIcon.png)\r
839 \r
840 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
841         * squashed some reduce/reduce conflicts out of mb-parser.jay\r
842 \r
843 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
844         * merged codegen.cs from mcs\r
845         * altered Driver.cs to work with new codegen.cs\r
846 \r
847 2002-05-27  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
848 \r
849         * merged all I could from mcs source files into mbas\r
850         * added VS.NET Solution and Project Files for mbas\r
851         * added icon file and a vb-sources-filled testmbas directory\r
852         * started this ChangeLog