2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Small correction in delegate declaration grammar

2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: modified RemoveHandler function
	* statement.cs: Added RemoveHandler statement class

2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Modified grammar for several syntax of AddressOf operator

2004/06/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* typemanager.cs : GetPertinentStandardModules receives the array now with params modifier to help usage
	* ecore.cs : correcting lookup of semi-qualified standard modules members - A little better but not there yet

2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Grammar added for RemoveHandler statement

2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
        * mb-parser.jay:
        * expression.cs:
                Added support for statement like
                        delgate_name = AddressOf sub_name

2004-06-09  Raja R Harinath  <rharinath@novell.com>

	* Makefile (HAS_TEST): Remove.
	(run-test-local): Move rule to and depend on ...
	(run-mbas-test): ... this.

2004-06-08 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* statement.cs:
		Few exception checks for Event

2004-06-07 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Resolved the problem in Sub statement with Handles cluse
	* class.cs: Added a AddEventHandler function and a EventHandler readonly property. Also modified define of constructor to accommodate Handlers clause.		
	            If one initialize a event handler as
			Sub Handler() Handles x.Event
		    The handler will be initialized by the constructor of the corresponding class by calling AddHandler.

2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Modified WithEvents grammar	

2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: - NotOverridable modifier support added to Property
		    - Few overriding related checks put on Property
 
2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
	* decl.cs: Check for duplicate member name within same container

2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: changed exception number in event grammar

2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: RaiseEvent grammar fixed to get it working

2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
	* driver.cs: fixed bug - 59540

2004-06-01 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Improved event declaration grammar

2004/05/31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* AssemblyInfo.cs : Anirban is and author too

2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
	* delegate.cs:
	* expression.cs:
		Few exception checks for delegete

2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* delegate.cs:
		Few more fixes in delegate grammar		

2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Changed Delegate instantiation grammar to get it working

2004-05-26 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* class.cs:
		Few property related checks applied

2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Check for ReadOnly and WriteOnly modifiers added to property

2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
	* mb-paresr.jay: Support for abstruct property is added

2004-05-24  Raja R Harinath  <rharinath@novell.com>

	* Makefile (PROGRAM_INSTALL_DIR): Install mbas into
	$(prefix)/lib/mono/1.0.

2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: few Property related grammar changes

2004-05-14 Anirban Bhattacharjee <banirban@novell.com>
	* mb-tokenizer.cs: Bug fixed - Got Property working

2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Support added for attaching Attributes in methods

2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* AssemblyInfo.cs : Correcting information and version number

2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
	* enum.cs: bug fixing - setting one enum member to another

2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
	* enum.cs:
	* expression.cs:
		Implemented check for access modifier in enum

2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>

	* typemanager.cs: Property.GetGetMethod() does not return the method if it
	is private (it did until now because of a bug). Make sure it works as it 
	worked before the fix.

2004-04-28 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: fixed bug to get enum running
	* enum.cs: handling several negative scenarios 
		   Changed several exception numbers
	* assign.cs: Changed exception number

2004-04-26  Jackson Harper  <jackson@ximian.com>

	* Makefile: Get libs from default profile directory.
	
2004-04-23 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Grammar changes for array
	* expression.cs: exception number changed for "Incorrectly structured array initializer" exception

2004-04-17 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* class.cs:
	* const.cs
		a little better structure grammar

2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: few clean-ups

2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Duplicate entry point exception number changed
		    Checked delaration of Types, fields, methods as Protected if they are member of Module type
	* const.cs: Checked delaration of constructor as Protected if it is member of Module type
	* driver.cs: exception number is changed for "Entry point does not exist" exception

2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Classes can't be delared static impicitly as other module members

2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Couple of bug fixes in defining default static constructor, partially imposed by the fix earlier

2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Added support for Shadows modifier in Variables

2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
	* const.cs: Added support for Shadows modifier in constant

2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Removed the check which was stoping type instances to access the shared variables

2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
	* modifiers.cs: changed exception number for invalid modifiers exception

2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Removed 'static_constructor_declaration' - this is not required as 'constructor_declaration' implementation is good enough to handle static constructors too
	* class.cs: Handling couple of negative scenarios related to static constructors and bug fixes

2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Couple of negative scenario handling

2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Few clean-up

2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Bug fixed - Base class ctor was getting called twice when called explicitly from the derived class ctor as MyBase.New

2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Fixed bugs for calling ctor from another ctor in the same class by using statments like
		Me.New 
		or 
		MyClass.New

2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-tokenizer.cs : Better error message when dealing with date literals

2004-04-06 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs:
	* ecore.cs:
	* expression.cs:
	* modifiers.cs:
	Changed/added serveral Accessibility related expections 

2004-04-05 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs:
	* decl.cs:
	* expression.cs:
	* pending.cs: 
	Several error messages and numbers are changed in all the above four classes

2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
	* delegate.cs: changed default access modifier
	* enum.cs: changed default access modifier
	* interface.cs: changed default access modifier
	* modifiers.cs: extension of bug fixed for getting NotOverridable modifier working for methods

2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
	* class.cs: Changed exception messages and their numbers to align better with VB
		    Changed default access modifier of method to Public
		    Bug fixed to get NotOverridable modifier working
	* decl.cs:  Changed exception messages and numbers

2004-03-25 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: bug fixing - creating default constructor when no constructor is specified
	Few modifiers are changed to align with Vb

2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* typemanager.cs :  being more carefull with null arguments in some places, 
						null checking in GetPertinentStandardModules() loop
	* namespace.cs : a helper ToString override 
	* ecore.cs : Dealing with finding more than a pertinent standard module having a global member
	* testmbas/WriteOk.vb : Exercising correct standard module resolution
    NOTE: Almost there for Bug #52067 - just the semi-qualified case isn't working 

2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: handled implicit static modifier for module members in const
	* const.cs: changed supported modifiers

2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
	* modifiers.cs: Return name of the modifiers' changed to vb specific

2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* ecore.cs : now it gets the correct list of namespaces in scope (either imported or current) Almost there for Bug #52067 

2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: One more negative scenario is addressed in const grammar

2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
	* const.cs: Change type of constant to the type of its value if no explicit type declaration found

2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Grammar for declaring constant inside block is changed

2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
	* const.cs: Changed exception numbers

2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Changed grammar for constant

2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-tokenizer.cs : handling better linebreak, specially when delaing with literals and preprocessing directives 

2004-03-16 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: 
		- changed variable declaration grammar and added support for multiple variables declartion under single type e.g. dim x, y as integer
		- added few exception checks in variables
		- added one exception check in property
	
2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* sourcebeingcompiled.cs : new source/class to hold things previously contained in namespaces.cs 
			because in C# they were semantically tied to nested namespaces, and in VB.NET 
			they can occur only once per file.
	* mbas.exe.sources: added sourcebeingcompiled.cs
	* mb-parser.jay: reference RootContext.Sourcebeingcompiled things
	* namespace.cs: move pieces to sourcebeingcompiled
	* rootcontext.cs: use SourceBeingCompiled class
	* decl.cs: reference RootContext.Sourcebeingcompiled things

2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
	* mb-tokenizer.cs: Support for '-' delimiter in DateTime

2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
	* report.cs: Formatted warning thrown

2004-03-02 Anirban Bhattacharjee <banirban@novell.com>

	* class.cs
	* decl.cs
	* modifiers.cs
	* mb-parser.jay
	Added Overloads and Shadows modifiers to Function and Sub
	Fixed few other modifier related problems in Function and Sub

2004-01-07  Nick Drochak <ndrochak@ieee.org>

	* genericparser.cs:
	* mb-tokenizer.cs: 
	* row.cs: Eliminate warnings about unused variables.

2004/01/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* typemanager.cs : 	correcting translation of System types to language types, 
			also temporarily circunventing a exception in ModuleBuilder.GetType inside LookupTypeReflection,
			corrected many ` characters to ' in error messages
	* testmbas/WriteOK.vb : testing newly implemented IsNumeric global function

2004-01-04  David Sheldon <dave-mono@earth.li>

  * expression.cs: Added matching ")" to error message for 
  CS0077

2003/12/23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : added stubs for options "/netcf /sdkpath:path"
	* namespace.cs, decl.cs, rootcontext.cs : use hashtable to avoid duplicate importation of namespaces 
	  (especially between command-line option /imports and explicit Import clauses), what manifested itself as
	  error messages for ambiguous names that where in truth identical
	* statement.cs : trying to fix the 'exit' statement DoEmit, for "Exit Sub"
	* mb-parser.jay, mb-tokenizer.cs : initial support for type_characters (dim az$ = dim az as string)

2003/12/18  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* class.cs : case-sensitiveness when tracking the entry-point removed
	* driver.cs : IsSWFApp would try to pass a null 'mainclass' to the hashtable indexer, throwing an exception
		(even for correct programs because of the bug above). Now this condition is tested before

2003/12/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* ecore.cs : problems trying to implicit convert OMITTED arguments, solved
	* mb-tokenizer.cs, mb-parser.jay, typemanager.cs : support for the date primitive type and date literals
	* testmbas/WriteOK.vb: testing date type and date literal

2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : /imports option now is implemented
	* mb-parser.jay: support for pre-imported namespaces (the default Microsoft.VisualBasic and those from /imports)
	
2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-tokenizer.cs : integer literal (Hex starts with &H not 0x), handle Octal literals (&O)
	* 	handle unicode specialized double-quotes in string literals	
	* 	corrected some mishandling of conversions in numeric literals
	*	implemented support for char literals ("z"c)
	* Makefile : verbose target uses verbose argument
	* testmbas/WriteOK.vb: many tests for literals implemented
	* literal.cs: correcting lack of a ShortLiteral class
	* mb-parser.jay: removed support for unsigned int literals, added support for short int literals
	
2003/11/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* *.cs, mb-parser.jay: Switched all from defining/using namespace Mono.CSharp to Mono.MonoBASIC 
	* location.cs: SymbolDocument now returns a SymbolDocumentWriter using the right (SymLanguageType.Basic) GUID
	
2003/10/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* genericparser.cs: 
	    Don't print exception when a file is not found to be parsed
		File extensions not matched are now processed with the default parser
		Better handle file/directory not found exceptions, and use Report.Error in that case
	* added defaultparserattribute.cs
	* mb-parser.jay : Mono.MonoBASIC.Parser is now the [DefaultParser]
	* location.cs version 1.4 recovered (Marco Ridoni had it overwritten with an older version)
	* mb-tokenizer.cs, rootcontext.cs, tree.cs: Location constructor needs column number now

2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* .cvsignore: WHOOPS

2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* .cvsignore: some more files to ignore

2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-tokenizer.cs, driver.cs: Back to Linux line-endings, SORRY

2003/09/16  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* Makefile: corrected testing in Windows/Cygwin (from mbas.exe to ./mbas.exe), because it was getting the installed compiler instead of the compiled one
	* mb-tokenizer.cs: Redoing: Preprocessor directives must be case-insensitive (many .ToLower() used)
	* driver.cs: No more 'linkpaths' option, use 'libpath' instead

2003/09/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs: Corrected handling of FileNotFoundException in LoadAssembly(), according to Bernie Solomon's patch

2003/08/13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay: ReDim statement parses many variables now (but initializers aren't allowed)
					 Erase statement implemented
					 Lots of garbage (never reduced rules) deleted
					 Reduce/Reduce problems eliminated (where due to having opt_modifiers duplicated inside property_declaration rule)
	* statement.cs : class Redim is prepared to have ReDim Preserve copying code called,
					 but we need to check if that code is lying in Microsoft.VisualBasic.dll
					 New class Erase

2003-07-26  Ben Maurer  <bmaurer@users.sourceforge.net>
	
	* statement.cs: Make Math.XXX System.Math.XXX, to fix the build.
	
2003-07-20  Peter Williams  <peter@newton.cx>

	* Makefile: Remove the test target which conflicted with
	the global target. (Change confirmed with Rafael.)

2003-04-02  Duncan Mak  <duncan@ximian.com>

	* mb-parser.jay: Temporarily remove the references to
	Class.MustOverride to fix the build.

2003/03/29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay: corrected some module related rules
	* location.cs : now handles column information
	
2003/03/11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* makefile.gnu : use $RUNTIME for all targets
					 actually run the compiled program on 'test-gtk' target 
	* mb-tokenizer.cs : no escaping of chars allowed in VB.NET (old mcs code removed)
						handle doubled-doublequotes (VB idiom to escape a doublequote) 
	
2003/03/04  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay: added rule for Imports with alias
	* mb-parser.jay: Friend (internal) modifier was missing,
					 Shared modifier was expecting Static token erroneously
					 Modules must accept only a static constructor rule added
					 Constant declaration rule added
	* makefile & makefile.gnu : actually run the compiled program on test target 

2003/03/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-tokenizer.cs : new semi-keywords: Compare, Explicit, Strict, On, Off, Binary, Text
	* mb-parser.jay: tokens for above semi-keywords, and rules for option directives
	* driver.cs: integrates command line options with parser flags for option directives
	* makefile & makefile.gnu : added 'verbose' target that uses --verbose switch to compile 
	  the test source and pipes it through 'less', also added a Extended Syntax source

2003/02/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* class.cs : As, per vbc, there is a rootnamespace now, --main wasn't working anymore, 
				 because it was expecting a fully qualified class name. 
				 We now also test the name passed prepended by the rootnamespace.
	* class.cs : Corrected warning "The keyword new is required on `Mono.CSharp.Property.Emit'
				 because it hides inherited member `PropertyBase.Emit'", by making it virtual
				 in PropertyBase and override in Property.
	* makefile.gnu : test and test-gtk targets now depend on mbas.exe
				 

2003/02/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : eliminated reduce/reduce conflict on duplicated rank_specifier rule
	  by renaming the one using brackets to bracketed_rank_specifier

2003/02/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* added argument.cs (extracted from expression.cs) makefiles corrected
	* mb-parser.jay : eliminated reduce/reduce conflict on opt_argument_list rule, 
	  by putting and if to make a argument list with just an empty argument list become an empty list

2003/02/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* rootcontext.cs : added RootNamespace member
	* mb-parser.jay : use RootContext.RootNamespace to initialize outermost namespace
	* driver.cs : 
		- implement rootnamespace parameter, and defaults it to the output file name
		- like vbc if no source file name is provided just show help

2003/01/22  Nick Drochak <ndrochak@gol.com>
	* makefile: Use csc compiler in here. makefile.gnu assumes mono/mcs

2003-01-13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* added cleanup method to tokenizer as needed but modifications made in jay

2003-01-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* changed test target in makefile work
        * corrected authors list to include Marco

2002-10-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged many sources from mcs/mcs, to resync

2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* using Mono.GetOptions preliminar support for response files, 
	  changed the makefile target 'test' for use o response file testmbas/filelist

2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged many sources from mcs/mcs, to resync

2002-10-05  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged many sources from mcs/mcs, to resync

2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged many sources from mcs/mcs, to resync

2002-09-03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* integrated new version of Mono.GetOptions (reflection/attributes-based)

2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged expression.cs from mcs/mcs, to resync

2002-08-29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged assign.cs, attribute.cs, class.cs, codegen.cs, const.cs, decl.cs, delegate.cs, ecore.cs, enum.cs,
        expression.cs, interface.cs, pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and 
        typemanager.cs from mcs/mcs, to resync

2002-08-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* added "test" target to makefile
	* merged assign.cs, attribute.cs, cfold.cs, class.cs, codegen.cs, const.cs, constant.cs, 
	  decl.cs, delegate.cs, ecore.cs, enum.cs, expression.cs, interface.cs, modifiers.cs, parameter.cs, 
	  pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and typemanager.cs from mcs/mcs, to resync

2002-07-14  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged assign.cs, class.cs, ecore.cs, expression.cs, statement.cs and typemanager from mcs/mcs, to resync

2002-07-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged attribute.cs, ecore.cs, namespace.cs and statement.cs from mcs/mcs, to resync

2002-07-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged attribute.cs, class.cs, codegen.cs, ecore.cs, expression.cs, 
	  modifiers.cs, namespace.cs, report.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync
	* changed driver.cs to follow mcs lead on error/warning counting and reporting

2002-06-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged attribute.cs, class.cs, ecore.cs, rootcontext.cs, support.cs and typemanager.cs from mcs/mcs, to resync
	* makefile makes csc reference a copy of Mono.GetOptions.dll (mbas.sln now compiles to mbas dir instead of mbas/bin/Debug)

2002-06-21  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged attribute.cs, class.cs, interface.cs, expression.cs, ecore.cs, 
	  modifiers.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync
	* added pending.cs from mcs/mcs, to resync

2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged assign.cs, attribute.cs, enum.cs and namespace.cs from mcs/mcs, to resync
	* namespace.cs needed some fixing, because CSharpParser isn?t available

2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged delegate.cs, ecore.cs, typemanager.cs and rootcontext.cs from mcs/mcs, to resolve expression.cs blues

2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* oops merged expression.cs from mcs/mcs is breaking my make
	* driver.cs, assemblyinfo.cs wasn?t ready for prime time (offending lines were commented out)

2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged expression.cs from mcs/mcs

2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* corrected Module.TypeAttr property getter in module.cs
	
2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged typemanager.cs from mcs/mcs

2002-06-10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged expression.cs and interface.cs from mcs/mcs

2002-06-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged const.cs, enum.cs, expression.cs and typemanager.cs from mcs/mcs
    * comments on module.cs

2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged class.cs, attribute.cs from mcs/mcs

2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged class.cs, enum.cs, expression.cs, interface.cs, rootcontext.cs and typemanager.cs from mcs/mcs
	* added module.cs (class Mono.MonoBASIC.Module - derived from Mono.CSharp.Class)
	* added System.XML and Microsoft.VisualBasic to the default config (driver.cs)
	
2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged class.cs and ecore.cs from mcs/mcs

2002-06-02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* copied methods MakeName and CheckDef from mcs\cs-parser.jay to GenericParser.cs 
	  where they are inherited by mb-parser.jay/cs
	* put some code on the Module rule in mb-parser.jay to at least generate a class in the assembly,
	  if I jump over the entry-point check code, while debugging
	
2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* class Mono.MonoBASIC.Tokenizer now handles 
		- all valid line-terminators (CR, LF, CRLF, LS and PS)
		- escaped identifiers (like [Integer])
		- old-fashioned comments syntax (REM Blah-Blah)

2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* modified mbas.ico to be a small version of mono?s logo (see mcs\MonoIcon.png)

2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* squashed some reduce/reduce conflicts out of mb-parser.jay

2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* merged codegen.cs from mcs
	* altered Driver.cs to work with new codegen.cs

2002-05-27  Rafael Teixeira <rafaelteixeirabr@hotmail.com>

	* merged all I could from mcs source files into mbas
	* added VS.NET Solution and Project Files for mbas
	* added icon file and a vb-sources-filled testmbas directory
	* started this ChangeLog
