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