SaveAdd wrappers
[mono.git] / mcs / mbas / ChangeLog
1 2004-06-08 Anirban Bhattacharjee <banirban@novell.com>
2         * mb-parser.jay:
3         * statement.cs:
4                 Few exception checks for Event
5
6 2004-06-07 Anirban Bhattacharjee <banirban@novell.com>
7         * mb-parser.jay: Resolved the problem in Sub statement with Handles cluse
8         * class.cs: Added a AddEventHandler function and a EventHandler readonly property. Also modified define of constructor to accommodate Handlers clause.          
9                     If one initialize a event handler as
10                         Sub Handler() Handles x.Event
11                     The handler will be initialized by the constructor of the corresponding class by calling AddHandler.
12
13 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
14         * mb-parser.jay: Modified WithEvents grammar    
15
16 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
17         * class.cs: - NotOverridable modifier support added to Property
18                     - Few overriding related checks put on Property
19  
20 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
21         * decl.cs: Check for duplicate member name within same container
22
23 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
24         * class.cs: changed exception number in event grammar
25
26 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
27         * mb-parser.jay: RaiseEvent grammar fixed to get it working
28
29 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
30         * driver.cs: fixed bug - 59540
31
32 2004-06-01 Anirban Bhattacharjee <banirban@novell.com>
33         * mb-parser.jay: Improved event declaration grammar
34
35 2004/05/31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
36         * AssemblyInfo.cs : Anirban is and author too
37
38 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
39         * delegate.cs:
40         * expression.cs:
41                 Few exception checks for delegete
42
43 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
44         * mb-parser.jay:
45         * delegate.cs:
46                 Few more fixes in delegate grammar              
47
48 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
49         * mb-parser.jay: Changed Delegate instantiation grammar to get it working
50
51 2004-05-26 Anirban Bhattacharjee <banirban@novell.com>
52         * mb-parser.jay:
53         * class.cs:
54                 Few property related checks applied
55
56 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
57         * class.cs: Check for ReadOnly and WriteOnly modifiers added to property
58
59 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
60         * mb-paresr.jay: Support for abstruct property is added
61
62 2004-05-24  Raja R Harinath  <rharinath@novell.com>
63
64         * Makefile (PROGRAM_INSTALL_DIR): Install mbas into
65         $(prefix)/lib/mono/1.0.
66
67 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
68         * mb-parser.jay: few Property related grammar changes
69
70 2004-05-14 Anirban Bhattacharjee <banirban@novell.com>
71         * mb-tokenizer.cs: Bug fixed - Got Property working
72
73 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
74         * mb-parser.jay: Support added for attaching Attributes in methods
75
76 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
77         * AssemblyInfo.cs : Correcting information and version number
78
79 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
80         * enum.cs: bug fixing - setting one enum member to another
81
82 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
83         * enum.cs:
84         * expression.cs:
85                 Implemented check for access modifier in enum
86
87 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
88
89         * typemanager.cs: Property.GetGetMethod() does not return the method if it
90         is private (it did until now because of a bug). Make sure it works as it 
91         worked before the fix.
92
93 2004-04-28 Anirban Bhattacharjee <banirban@novell.com>
94         * expression.cs: fixed bug to get enum running
95         * enum.cs: handling several negative scenarios 
96                    Changed several exception numbers
97         * assign.cs: Changed exception number
98
99 2004-04-26  Jackson Harper  <jackson@ximian.com>
100
101         * Makefile: Get libs from default profile directory.
102         
103 2004-04-23 Anirban Bhattacharjee <banirban@novell.com>
104         * mb-parser.jay: Grammar changes for array
105         * expression.cs: exception number changed for "Incorrectly structured array initializer" exception
106
107 2004-04-17 Anirban Bhattacharjee <banirban@novell.com>
108         * mb-parser.jay:
109         * class.cs:
110         * const.cs
111                 a little better structure grammar
112
113 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
114         * mb-parser.jay: few clean-ups
115
116 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
117         * class.cs: Duplicate entry point exception number changed
118                     Checked delaration of Types, fields, methods as Protected if they are member of Module type
119         * const.cs: Checked delaration of constructor as Protected if it is member of Module type
120         * driver.cs: exception number is changed for "Entry point does not exist" exception
121
122 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
123         * mb-parser.jay: Classes can't be delared static impicitly as other module members
124
125 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
126         * class.cs: Couple of bug fixes in defining default static constructor, partially imposed by the fix earlier
127
128 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
129         * class.cs: Added support for Shadows modifier in Variables
130
131 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
132         * const.cs: Added support for Shadows modifier in constant
133
134 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
135         * expression.cs: Removed the check which was stoping type instances to access the shared variables
136
137 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
138         * modifiers.cs: changed exception number for invalid modifiers exception
139
140 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
141         * mb-parser.jay: Removed 'static_constructor_declaration' - this is not required as 'constructor_declaration' implementation is good enough to handle static constructors too
142         * class.cs: Handling couple of negative scenarios related to static constructors and bug fixes
143
144 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
145         * class.cs: Couple of negative scenario handling
146
147 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
148         * mb-parser.jay: Few clean-up
149
150 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
151         * mb-parser.jay: Bug fixed - Base class ctor was getting called twice when called explicitly from the derived class ctor as MyBase.New
152
153 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
154         * mb-parser.jay: Fixed bugs for calling ctor from another ctor in the same class by using statments like
155                 Me.New 
156                 or 
157                 MyClass.New
158
159 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
160         * mb-tokenizer.cs : Better error message when dealing with date literals\r
161
162 2004-04-06 Anirban Bhattacharjee <banirban@novell.com>
163         * class.cs:
164         * ecore.cs:
165         * expression.cs:
166         * modifiers.cs:
167         Changed/added serveral Accessibility related expections 
168
169 2004-04-05 Anirban Bhattacharjee <banirban@novell.com>
170         * class.cs:
171         * decl.cs:
172         * expression.cs:
173         * pending.cs: 
174         Several error messages and numbers are changed in all the above four classes
175
176 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
177         * delegate.cs: changed default access modifier
178         * enum.cs: changed default access modifier
179         * interface.cs: changed default access modifier
180         * modifiers.cs: extension of bug fixed for getting NotOverridable modifier working for methods
181
182 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
183         * class.cs: Changed exception messages and their numbers to align better with VB
184                     Changed default access modifier of method to Public
185                     Bug fixed to get NotOverridable modifier working
186         * decl.cs:  Changed exception messages and numbers
187
188 2004-03-25 Anirban Bhattacharjee <banirban@novell.com>
189         * class.cs: bug fixing - creating default constructor when no constructor is specified
190         Few modifiers are changed to align with Vb
191
192 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
193         * typemanager.cs :  being more carefull with null arguments in some places, 
194                                                 null checking in GetPertinentStandardModules() loop
195         * namespace.cs : a helper ToString override 
196         * ecore.cs : Dealing with finding more than a pertinent standard module having a global member
197         * testmbas/WriteOk.vb : Exercising correct standard module resolution
198     NOTE: Almost there for Bug #52067 - just the semi-qualified case isn't working 
199
200 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
201         * mb-parser.jay: handled implicit static modifier for module members in const
202         * const.cs: changed supported modifiers
203
204 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
205         * modifiers.cs: Return name of the modifiers' changed to vb specific
206
207 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
208         * ecore.cs : now it gets the correct list of namespaces in scope (either imported or current) Almost there for Bug #52067 
209
210 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
211         * mb-parser.jay: One more negative scenario is addressed in const grammar
212
213 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
214         * const.cs: Change type of constant to the type of its value if no explicit type declaration found
215
216 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
217         * mb-parser.jay: Grammar for declaring constant inside block is changed
218
219 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
220         * const.cs: Changed exception numbers
221
222 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
223         * mb-parser.jay: Changed grammar for constant
224
225 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
226         * mb-tokenizer.cs : handling better linebreak, specially when delaing with literals and preprocessing directives 
227
228 2004-03-16 Anirban Bhattacharjee <banirban@novell.com>
229         * mb-parser.jay: 
230                 - changed variable declaration grammar and added support for multiple variables declartion under single type e.g. dim x, y as integer
231                 - added few exception checks in variables
232                 - added one exception check in property
233         
234 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
235         * sourcebeingcompiled.cs : new source/class to hold things previously contained in namespaces.cs 
236                         because in C# they were semantically tied to nested namespaces, and in VB.NET 
237                         they can occur only once per file.
238         * mbas.exe.sources: added sourcebeingcompiled.cs
239         * mb-parser.jay: reference RootContext.Sourcebeingcompiled things
240         * namespace.cs: move pieces to sourcebeingcompiled
241         * rootcontext.cs: use SourceBeingCompiled class
242         * decl.cs: reference RootContext.Sourcebeingcompiled things
243
244 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
245         * mb-tokenizer.cs: Support for '-' delimiter in DateTime
246
247 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
248         * report.cs: Formatted warning thrown
249
250 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
251
252         * class.cs
253         * decl.cs
254         * modifiers.cs
255         * mb-parser.jay
256         Added Overloads and Shadows modifiers to Function and Sub
257         Fixed few other modifier related problems in Function and Sub
258
259 2004-01-07  Nick Drochak <ndrochak@ieee.org>\r
260 \r
261         * genericparser.cs:\r
262         * mb-tokenizer.cs: \r
263         * row.cs: Eliminate warnings about unused variables.\r
264 \r
265 2004/01/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
266         * typemanager.cs :      correcting translation of System types to language types, 
267                         also temporarily circunventing a exception in ModuleBuilder.GetType inside LookupTypeReflection,
268                         corrected many ` characters to ' in error messages
269         * testmbas/WriteOK.vb : testing newly implemented IsNumeric global function\r
270
271 2004-01-04  David Sheldon <dave-mono@earth.li>
272
273   * expression.cs: Added matching ")" to error message for 
274   CS0077
275
276 2003/12/23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
277         * driver.cs : added stubs for options "/netcf /sdkpath:path"\r
278         * namespace.cs, decl.cs, rootcontext.cs : use hashtable to avoid duplicate importation of namespaces \r
279           (especially between command-line option /imports and explicit Import clauses), what manifested itself as\r
280           error messages for ambiguous names that where in truth identical\r
281         * statement.cs : trying to fix the 'exit' statement DoEmit, for "Exit Sub"\r
282         * mb-parser.jay, mb-tokenizer.cs : initial support for type_characters (dim az$ = dim az as string)\r
283 \r
284 2003/12/18  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
285         * class.cs : case-sensitiveness when tracking the entry-point removed\r
286         * driver.cs : IsSWFApp would try to pass a null 'mainclass' to the hashtable indexer, throwing an exception\r
287                 (even for correct programs because of the bug above). Now this condition is tested before\r
288 \r
289 2003/12/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
290         * ecore.cs : problems trying to implicit convert OMITTED arguments, solved\r
291         * mb-tokenizer.cs, mb-parser.jay, typemanager.cs : support for the date primitive type and date literals\r
292         * testmbas/WriteOK.vb: testing date type and date literal\r
293 \r
294 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
295         * driver.cs : /imports option now is implemented\r
296         * mb-parser.jay: support for pre-imported namespaces (the default Microsoft.VisualBasic and those from /imports)\r
297         \r
298 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
299         * mb-tokenizer.cs : integer literal (Hex starts with &H not 0x), handle Octal literals (&O)\r
300         *       handle unicode specialized double-quotes in string literals     \r
301         *       corrected some mishandling of conversions in numeric literals\r
302         *       implemented support for char literals ("z"c)\r
303         * Makefile : verbose target uses verbose argument\r
304         * testmbas/WriteOK.vb: many tests for literals implemented\r
305         * literal.cs: correcting lack of a ShortLiteral class\r
306         * mb-parser.jay: removed support for unsigned int literals, added support for short int literals\r
307         \r
308 2003/11/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
309         * *.cs, mb-parser.jay: Switched all from defining/using namespace Mono.CSharp to Mono.MonoBASIC \r
310         * location.cs: SymbolDocument now returns a SymbolDocumentWriter using the right (SymLanguageType.Basic) GUID\r
311         \r
312 2003/10/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
313         * genericparser.cs: \r
314             Don't print exception when a file is not found to be parsed\r
315                 File extensions not matched are now processed with the default parser\r
316                 Better handle file/directory not found exceptions, and use Report.Error in that case\r
317         * added defaultparserattribute.cs\r
318         * mb-parser.jay : Mono.MonoBASIC.Parser is now the [DefaultParser]\r
319         * location.cs version 1.4 recovered (Marco Ridoni had it overwritten with an older version)\r
320         * mb-tokenizer.cs, rootcontext.cs, tree.cs: Location constructor needs column number now\r
321 \r
322 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
323         * .cvsignore: WHOOPS\r
324 \r
325 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
326         * .cvsignore: some more files to ignore\r
327 \r
328 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
329         * mb-tokenizer.cs, driver.cs: Back to Linux line-endings, SORRY\r
330 \r
331 2003/09/16  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
332         * 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
333         * mb-tokenizer.cs: Redoing: Preprocessor directives must be case-insensitive (many .ToLower() used)\r
334         * driver.cs: No more 'linkpaths' option, use 'libpath' instead\r
335 \r
336 2003/09/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
337         * driver.cs: Corrected handling of FileNotFoundException in LoadAssembly(), according to Bernie Solomon's patch\r
338 \r
339 2003/08/13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
340         * mb-parser.jay: ReDim statement parses many variables now (but initializers aren't allowed)\r
341                                          Erase statement implemented\r
342                                          Lots of garbage (never reduced rules) deleted\r
343                                          Reduce/Reduce problems eliminated (where due to having opt_modifiers duplicated inside property_declaration rule)\r
344         * statement.cs : class Redim is prepared to have ReDim Preserve copying code called,\r
345                                          but we need to check if that code is lying in Microsoft.VisualBasic.dll\r
346                                          New class Erase\r
347 \r
348 2003-07-26  Ben Maurer  <bmaurer@users.sourceforge.net>\r
349         \r
350         * statement.cs: Make Math.XXX System.Math.XXX, to fix the build.\r
351         \r
352 2003-07-20  Peter Williams  <peter@newton.cx>\r
353 \r
354         * Makefile: Remove the test target which conflicted with\r
355         the global target. (Change confirmed with Rafael.)\r
356 \r
357 2003-04-02  Duncan Mak  <duncan@ximian.com>\r
358 \r
359         * mb-parser.jay: Temporarily remove the references to\r
360         Class.MustOverride to fix the build.\r
361 \r
362 2003/03/29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
363         * mb-parser.jay: corrected some module related rules\r
364         * location.cs : now handles column information\r
365         \r
366 2003/03/11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
367         * makefile.gnu : use $RUNTIME for all targets\r
368                                          actually run the compiled program on 'test-gtk' target \r
369         * mb-tokenizer.cs : no escaping of chars allowed in VB.NET (old mcs code removed)\r
370                                                 handle doubled-doublequotes (VB idiom to escape a doublequote) \r
371         \r
372 2003/03/04  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
373         * mb-parser.jay: added rule for Imports with alias\r
374         * mb-parser.jay: Friend (internal) modifier was missing,\r
375                                          Shared modifier was expecting Static token erroneously\r
376                                          Modules must accept only a static constructor rule added\r
377                                          Constant declaration rule added\r
378         * makefile & makefile.gnu : actually run the compiled program on test target \r
379 \r
380 2003/03/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
381         * mb-tokenizer.cs : new semi-keywords: Compare, Explicit, Strict, On, Off, Binary, Text\r
382         * mb-parser.jay: tokens for above semi-keywords, and rules for option directives\r
383         * driver.cs: integrates command line options with parser flags for option directives\r
384         * makefile & makefile.gnu : added 'verbose' target that uses --verbose switch to compile \r
385           the test source and pipes it through 'less', also added a Extended Syntax source\r
386 \r
387 2003/02/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
388         * class.cs : As, per vbc, there is a rootnamespace now, --main wasn't working anymore, \r
389                                  because it was expecting a fully qualified class name. \r
390                                  We now also test the name passed prepended by the rootnamespace.\r
391         * class.cs : Corrected warning "The keyword new is required on `Mono.CSharp.Property.Emit'\r
392                                  because it hides inherited member `PropertyBase.Emit'", by making it virtual\r
393                                  in PropertyBase and override in Property.\r
394         * makefile.gnu : test and test-gtk targets now depend on mbas.exe\r
395                                  \r
396 \r
397 2003/02/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
398         * mb-parser.jay : eliminated reduce/reduce conflict on duplicated rank_specifier rule\r
399           by renaming the one using brackets to bracketed_rank_specifier\r
400 \r
401 2003/02/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
402         * added argument.cs (extracted from expression.cs) makefiles corrected\r
403         * mb-parser.jay : eliminated reduce/reduce conflict on opt_argument_list rule, \r
404           by putting and if to make a argument list with just an empty argument list become an empty list\r
405 \r
406 2003/02/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
407         * rootcontext.cs : added RootNamespace member\r
408         * mb-parser.jay : use RootContext.RootNamespace to initialize outermost namespace\r
409         * driver.cs : \r
410                 - implement rootnamespace parameter, and defaults it to the output file name\r
411                 - like vbc if no source file name is provided just show help\r
412 \r
413 2003/01/22  Nick Drochak <ndrochak@gol.com>\r
414         * makefile: Use csc compiler in here. makefile.gnu assumes mono/mcs\r
415 \r
416 2003-01-13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
417         * added cleanup method to tokenizer as needed but modifications made in jay\r
418 \r
419 2003-01-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
420         * changed test target in makefile work\r
421         * corrected authors list to include Marco\r
422 \r
423 2002-10-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
424         * merged many sources from mcs/mcs, to resync\r
425 \r
426 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
427         * using Mono.GetOptions preliminar support for response files, \r
428           changed the makefile target 'test' for use o response file testmbas/filelist\r
429 \r
430 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
431         * merged many sources from mcs/mcs, to resync\r
432 \r
433 2002-10-05  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
434         * merged many sources from mcs/mcs, to resync\r
435 \r
436 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
437         * merged many sources from mcs/mcs, to resync\r
438 \r
439 2002-09-03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
440         * integrated new version of Mono.GetOptions (reflection/attributes-based)\r
441 \r
442 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
443         * merged expression.cs from mcs/mcs, to resync\r
444 \r
445 2002-08-29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
446         * merged assign.cs, attribute.cs, class.cs, codegen.cs, const.cs, decl.cs, delegate.cs, ecore.cs, enum.cs,\r
447         expression.cs, interface.cs, pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and \r
448         typemanager.cs from mcs/mcs, to resync\r
449 \r
450 2002-08-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
451         * added "test" target to makefile\r
452         * merged assign.cs, attribute.cs, cfold.cs, class.cs, codegen.cs, const.cs, constant.cs, \r
453           decl.cs, delegate.cs, ecore.cs, enum.cs, expression.cs, interface.cs, modifiers.cs, parameter.cs, \r
454           pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and typemanager.cs from mcs/mcs, to resync\r
455 \r
456 2002-07-14  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
457         * merged assign.cs, class.cs, ecore.cs, expression.cs, statement.cs and typemanager from mcs/mcs, to resync\r
458 \r
459 2002-07-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
460         * merged attribute.cs, ecore.cs, namespace.cs and statement.cs from mcs/mcs, to resync\r
461 \r
462 2002-07-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
463         * merged attribute.cs, class.cs, codegen.cs, ecore.cs, expression.cs, \r
464           modifiers.cs, namespace.cs, report.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync\r
465         * changed driver.cs to follow mcs lead on error/warning counting and reporting\r
466 \r
467 2002-06-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
468         * merged attribute.cs, class.cs, ecore.cs, rootcontext.cs, support.cs and typemanager.cs from mcs/mcs, to resync\r
469         * makefile makes csc reference a copy of Mono.GetOptions.dll (mbas.sln now compiles to mbas dir instead of mbas/bin/Debug)\r
470 \r
471 2002-06-21  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
472         * merged attribute.cs, class.cs, interface.cs, expression.cs, ecore.cs, \r
473           modifiers.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync\r
474         * added pending.cs from mcs/mcs, to resync\r
475 \r
476 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
477         * merged assign.cs, attribute.cs, enum.cs and namespace.cs from mcs/mcs, to resync\r
478         * namespace.cs needed some fixing, because CSharpParser isn?t available\r
479 \r
480 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
481         * merged delegate.cs, ecore.cs, typemanager.cs and rootcontext.cs from mcs/mcs, to resolve expression.cs blues\r
482 \r
483 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
484         * oops merged expression.cs from mcs/mcs is breaking my make\r
485         * driver.cs, assemblyinfo.cs wasn?t ready for prime time (offending lines were commented out)\r
486 \r
487 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
488         * merged expression.cs from mcs/mcs\r
489 \r
490 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
491         * corrected Module.TypeAttr property getter in module.cs\r
492         \r
493 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
494         * merged typemanager.cs from mcs/mcs\r
495 \r
496 2002-06-10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
497         * merged expression.cs and interface.cs from mcs/mcs\r
498 \r
499 2002-06-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
500         * merged const.cs, enum.cs, expression.cs and typemanager.cs from mcs/mcs\r
501     * comments on module.cs\r
502 \r
503 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
504         * merged class.cs, attribute.cs from mcs/mcs\r
505 \r
506 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
507         * merged class.cs, enum.cs, expression.cs, interface.cs, rootcontext.cs and typemanager.cs from mcs/mcs\r
508         * added module.cs (class Mono.MonoBASIC.Module - derived from Mono.CSharp.Class)\r
509         * added System.XML and Microsoft.VisualBasic to the default config (driver.cs)\r
510         \r
511 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
512         * merged class.cs and ecore.cs from mcs/mcs\r
513 \r
514 2002-06-02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
515         * copied methods MakeName and CheckDef from mcs\cs-parser.jay to GenericParser.cs \r
516           where they are inherited by mb-parser.jay/cs\r
517         * put some code on the Module rule in mb-parser.jay to at least generate a class in the assembly,\r
518           if I jump over the entry-point check code, while debugging\r
519         \r
520 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
521         * class Mono.MonoBASIC.Tokenizer now handles \r
522                 - all valid line-terminators (CR, LF, CRLF, LS and PS)\r
523                 - escaped identifiers (like [Integer])\r
524                 - old-fashioned comments syntax (REM Blah-Blah)\r
525 \r
526 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
527         * modified mbas.ico to be a small version of mono?s logo (see mcs\MonoIcon.png)\r
528 \r
529 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
530         * squashed some reduce/reduce conflicts out of mb-parser.jay\r
531 \r
532 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
533         * merged codegen.cs from mcs\r
534         * altered Driver.cs to work with new codegen.cs\r
535 \r
536 2002-05-27  Rafael Teixeira <rafaelteixeirabr@hotmail.com>\r
537 \r
538         * merged all I could from mcs source files into mbas\r
539         * added VS.NET Solution and Project Files for mbas\r
540         * added icon file and a vb-sources-filled testmbas directory\r
541         * started this ChangeLog