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