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