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