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