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