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