2005-07-13 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
[mono.git] / mcs / mbas / ChangeLog
1 2005-07-13 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
2         *statement.cs: extract class Block into new source block.cs
3         *mbas.exe.sources: added newly extracted block.cs
4         *block.cs: eliminated "block.cs(252) warning CS0219: The variable 'cur' is assigned but its value is never used"
5
6 2005-07-12 Manjula GHM <mmanjula@novell.com>
7         * parameter.cs , ecore.cs : Changed error number and message according to .NET
8
9 2005-07-12 Manjula GHM <mmanjula@novell.com>
10         * cfold.cs: Support 'Nothing' for Constants.
11                  Added exception        
12                 
13 2005-07-07 Manjula GHM <mmanjula@novell.com>
14         * mb-parser.jay: To avoid Array modifiers specified on both a variable and its type
15
16 2005-07-06 Umadevi S <sumadevi@novell.com>
17         * statement.cs - suppressing warnings due to unused variables in mbas compiler.
18
19 2005-07-05 Umadevi S <sumadevi@novell.com>
20         * expression.cs - added support to handle DBNull
21
22 2005-06-30:5 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
23         *ecore.cs: some tentative code preparing to support automatic definition of variables
24         on first usage with Option Explicit Off commented out as it breaks on emit phase, and 
25         guesses wrong what should be automatically defined
26
27 2005-06-30:4 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
28         *statement.cs: some tentative code preparing to support automatic definition of variables
29         on first usage with Option Explicit Off. Converting backticks to apostrophes on messages
30
31 2005-06-30:3 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
32         *mb-parser.jay: small bits preparing to support automatic definition of variables
33         on first usage with Option Explicit Off
34         
35 2005-06-30:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
36         *assign.cs: Killed exception occurring when resolving an assignment 
37         to an undefined symbol (Explicit On scenario)
38
39 2005-06-30 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
40         *mb-parser.jay: Eliminating 'reduce/reduce conflicts' and 'rule never reduced'
41         by simplifying the directive_expression rule (formerly directive_exp).
42
43 2005-06-30 Manjula GHM <mmanjula@novell.com>
44         *mb-parser.jay: To support signed exponent
45
46 2005-06-30 Manjula GHM <mmanjula@novell.com>
47         *mb-tokenizer.c : Support hexadecimal literals - supports binary value 
48         of the integer literal - like &H8000S is "-32768" and not an overflow exception
49
50 2005-06-28 Manjula GHM <mmanjula@novell.com>
51         *class.cs : Support suitable property to override
52
53 2005-06-27 Manjula GHM <mmanjula@novell.com>
54         * mb-parser.jay:
55         *statement.cs: Support and successfully find label definition inside child block
56
57 2005-06-23 Manjula GHM <mmanjula@novell.com>
58         *mb-parser.jay: Clear the hashtable in end of block
59
60 2005-06-23 Manjula GHM <mmanjula@novell.com>
61         *mb-parser.jay: To disallow reassignment of object inside 'With...End With' block
62
63 2005-06-13 Manjula GHM <mmanjula@novell.com>
64         *statement.cs: To handle Goto in Try, Catch block
65
66 2005-06-10 Manjula GHM <mmanjula@novell.com>
67         *assign: To Support other types of source in Mid statement
68
69 2005-06-10 Manjula GHM <mmanjula@novell.com>
70         *assign: To Support Optional Max. Insert length value in Mid statement
71
72 2005-06-10 Manjula GHM <mmanjula@novell.com>
73         *assign.cs: Allow New Date assignment to other types
74
75 2005-06-08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
76         * AssemblyInfo.cs : 
77                 - Added informational attributes that Mono.GetOptions shows in the help screen.
78                 - Bumped up the version number a bit 
79         
80 2005-06-07 Satya Sudha K <ksathyasudha@novell.com>
81         * class.cs : Disallowing default properties without parameters.
82         * Some cleanups in other files to get rid of warnings.
83
84 2005-06-03 Satya Sudha K <ksathyasudha@novell.com>
85         * expression.cs : Allowing '()' for property invocation with no args.
86         * typemanager.cs : 
87                 - Caching a property's arguments (as 'NoTypes') while registering a property
88                 - If a name resolves to a field as well as a property, treat it as a field
89                 - If a name resolves to a field as well as a event, giving preference to event
90         * parameters.cs : Case-insensitive search/comparison of parameter/arg names
91
92 2005-05-30 Satya Sudha K <ksathyasudha@novell.com>
93         * statement.cs : 'For Each' statement : Wrapping the body of the For loop inside an exception block 
94                          if the enumerator implements 'IDisposable' interface
95
96 2005-05-27 Satya Sudha K <ksathyasudha@novell.com>
97         * statement.cs :
98         * mb-parser.jay :
99                 - Supporting all kinds of case clauses (like 'A To B', 'Is >= 30')
100                 - Expressions of all primitive types can now be specified as 'Select' 
101                   and 'Case' expressions
102
103 2005-05-27 Manjula GHM <mmanjula@novell.com>
104         * mb-parser.jay : To support "Sub New()" without modifier       
105
106 2005-05-26 Manjula GHM <mmanjula@novell.com>
107         * typemanager.cs : Fix Enum conversion for two level assignment and added few more cases
108
109 2005-05-26 Manjula GHM <mmanjula@novell.com>
110         * statement.cs : Fix problem w.r.t 'Exit Sub' 
111
112 2005-05-24 Satya Sudha K <ksathyasudha@novell.com>
113         * statement.cs : Added few more members like 'memberName' and 'type_expr' to the 'StatementSequence'
114                          class. Added an appropriate constructor for the same.
115         * expression.cs: Late binding for method invocations involving object arguments
116                          
117
118 2005-05-23 Satya Sudha K <ksathyasudha@novell.com>
119         * statement.cs : Copying back the arguments (matching 'ByRef' parameters) in the reverse 
120                          order (starting with the last argument backwards) as done by vbc
121
122 2005-05-23 Satya Sudha K <ksathyasudha@novell.com>
123         * statement.cs : Support named arguments in late binding
124
125 2005-05-17 Satya Sudha K <ksathyasudha@novell.com>
126         * ecore.cs : Removed char <-> numeric/date conversions as they are not supported in vbc
127
128 2005-05-17 Satya Sudha K <ksathyasudha@novell.com>
129         * expressions.cs :
130                 - Disallowing named arguments for 'ParamArray' parameters
131                 - Creating named arguments (to replace missing arguments), in case other arguments are also named
132
133 2005-05-16 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
134         * driver.cs : correcting/refactoring EntryPoint fixing as per #74955
135                 adjusting references changed by Gonzalo to their new containing namespace.
136                 small renaming refactorings to make things clearer.
137         * CompilerOptions.cs : refactored out all things that now live in 
138                 Mono.GetOptions.Useful.CommonCompilerOptions
139
140 2005-05-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
141
142         * driver.cs: fix ambiguous reference.
143
144 2005-05-16 Manjula GHM <mmanjula@novell.com>
145         * literal.cs: Declare NullType
146         * typemanager.cs: Invoke proper Decimal constructor
147         * ecore.cs : Support Decimal type in literalized version
148         * const.cs : 
149         * constant.cs :
150         * expression.cs :
151                 Support Decimal constant declaration  and retrieval of Decimal structure 
152                 members from corelib
153
154 2005-05-16 Satya Sudha K <ksathyasudha@novell.com>
155         * parameter.cs : Converting the default value (for optional param) to param type.
156         * ecore.cs     : Fixed string <-> char constant conversions.
157         * expression.cs :
158         * argument.cs   :
159         * mb-parser.jay :
160                         Support for named arguments
161                 
162 2005-05-12:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
163         * driver.cs : mcs having C# 2.0 features makes me slip some simplified delegate creation 
164                 code, that breaks with csc in Windows (as pointed by Atsushi)
165         * CompilerOptions.cs : moved some delegate definitions outside the class for shorter name when using.
166
167 2005-05-12 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
168         * driver.cs : slimmed down, most non-specific code moved to new class/source CompilerOptions.
169                 Also steps where individualized and put on a array of delegates for sequencial execution
170                 with stop-on-first-blunder behavior. It is similar to the configurable pipeline of the
171                 boo compiler.
172         * CompilerOptions.cs: added, refactored from inside driver.cs (some code/properties will migrate
173                 further to Mono.GetOptions.Usefull.CommonCompilerOptions)
174         * mbas.exe.sources: added CompilerOptions.cs
175
176 2005-05-11 Ankit Jain  <ankit@corewars.org>
177
178         * expression.cs (Invocation.CheckParameterAgainstArgument): Return ConversionType.Widening
179         for a NoArg argument. Fix earlier patch.
180
181 2005-05-11 Ankit Jain  <ankit@corewars.org>
182
183         * expression.cs (Invocation.CheckParameterAgainstArgument): Return ConversionType.Narrowing
184         for a NoArg argument.
185         (Invocation.IsApplicable): Don't create a REF type argument if it is NoArg.
186         (Invocation.ConstructArgumentList): Create argument with its DefaultValue for a NoArg.
187
188 2005-05-10 Satya Sudha K <ksathyasudha@novell.com>
189         * statement.cs, expression.cs, assign.cs :
190                 Patch to allow latebinding expressions to be specified as ByRef arguments 
191                 
192 2005-05-10  Raja R Harinath  <rharinath@novell.com>
193
194         * driver.cs (InitializeRootContextAndOthersFromOptions):
195         Overwrite RootContext.RootNamespace only if there's a value.
196
197 2005-05-09 Satya Sudha K <ksathyasudha@novell.com>
198         * parameter.cs : Support 'Optional ByRef' parameters
199         * statement.cs : Using 'System.Reflection.Missing.Value' in case of missing argument for 
200                          LateBinding cases
201                 
202 2005-05-07 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
203         * driver.cs : Oops, correcting some find-and-replace mishaps
204
205 2005-05-06 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
206         * driver.cs : Refactored to use Mono.GetOptions.Useful.CommonCompilerOptions
207
208 2005-05-05 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
209         * mb-parser.jay : Correction to allow optional type caracters in some situations.
210         Now 6 more tests under mbas/Test/tests/types compile and 3 more compile and run.
211         Patch contributed by Brazilian MonoBASIC Team:
212                 Aldo Monteiro do Nascimento <aldomonteiro@gmail.com>
213                 Alessandro de Oliveira Binhara <binhara@psl-pr.softwarelivre.org>
214                 Alexandre Rocha Lima e Marcondes <alexandre.marcondes@psl-pr.softwarelivre.org>
215                 Ramiro Batista da Luz <ramiroluz@gmail.com>
216                 Renato Suga <renatos@techresult.com.br>
217
218 2005-05-05 Satya Sudha K <ksathyasudha@novell.com>
219         * statement.cs
220         * mb-parser.jay:
221                 Changed the 'For' class to :
222                 - Handle negative step values
223                 - Supporting all types (numeric/object) of loop control variables
224
225         * expression.cs : Removed some unused methods
226         * ecore.cs      : Added float/double -> decimal conversion to NarrowingConversion
227
228 2005-05-02 Manjula GHM <mmanjula@novell.com>
229         * expression.cs : Support Reference Parameter - when argument and parameter are different.
230
231 2005-04-29 Satya Sudha K <ksathyasudha@novell.com>
232         * argument.cs
233         * statement.cs
234         * expression.cs
235         * assign.cs
236         * mb-parser.jay:
237                 Support for 'LateSet', 'LateIndexGet', 'LateIndexSet'
238
239         * ecore.cs :
240                 Minor fixes in conversions
241
242 2005-04-26 Manjula GHM <mmanjula@novell.com>
243         *statement.cs
244                 "out" is not supported as Parameter Modifier in VB.NET
245
246 2005-04-26 Manjula GHM <mmanjula@novell.com>
247         *support.cs
248         *parameter.cs
249         *argument.cs
250         *expression.cs
251         *statement.cs
252                 "out" is not supported as Parameter Modifier in VB.NET
253 2005-04-21 Satya Sudha K <ksathyasudha@novell.com>
254         * ecore.cs :
255                 Fixed object to bool/float/double conversions
256                 Fixed numeric <--> Enum conversions 
257         * statement.cs :
258         * expression.cs :
259         * mb-parser.jay :
260                 (Initial) Support for 'LateGet'
261
262 2005-04-18 Manjula GHM <mmanjula@novell.com>
263         * mb-parser.jay:
264                 Support expressions for Directives
265 2005-04-19 Satya Sudha K <ksathyasudha@novell.com>
266         * ecore.cs :
267                 Fixed conversions from 'object' to double, float, decimal and long
268
269 2005-04-18 Manjula GHM <mmanjula@novell.com>
270         * mb-parser.jay:
271                 Support Conditional Constant Directives
272
273 2005-04-13 Manjula GHM <mmanjula@novell.com>
274         * expression.cs : To support  'Or' argument of AttributeTargets in AttributeUsage
275 2005-04-12 Satya Sudha K <ksathyasudha@novell.com>
276         * statement.cs :
277                 Introduced a class 'StatementSequence', to translate a late-binding call to a block of statements
278         * expression.cs :
279                 Support for late binding (Not complete yet. Some basic method invocations work as of now)
280         
281 2005-04-06 Ritvik Mayank <mritvik@novell.com>
282            by Sudharsan V <vsudharsan@novell.com>
283         * class.cs: correction for reflecting the correct Line No. in the Error message 
284 2005-04-05 Ritvik Mayank <mritvik@novell.com>
285            Patch Submitted by Sudharsan V <vsudharsan@novell.com>
286         * mb-parser.jay : correction for reflecting the correct Line No. in the Error message   
287
288 2005-03-31 Manjula GHM <mmanjula@novell.com>
289         *mb-tokenizer.cs:To fix make test failure
290 2005-03-31 Manjula GHM <mmanjula@novell.com>
291         *mb-tokenizer.cs: Support declaration of decimal numbers with no digits before point like '.52' instead of '0.52'
292
293 2005-03-29 Manjula GHM <mmanjula@novell.com>
294         *assign.cs: Disallow New Date assignment with types other than date and object type
295
296 2005-03-25:3 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
297         * AssemblyInfo.cs: Small increment in the version number to publicize --codepage support
298
299 2005-03-25:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
300         * genericparser.cs: another static Parse overload to support specifying encoding when parsing from a file.
301         * driver.cs: obsoletes --tokenize, record currentEncoding for each source-file to be processed, call the new Parse overload
302                 Implement support for a --codepage option similar to mcs. Example: 
303                         mono mbas.exe --codepage:1252 WindowsANSI.vb --codepage:utf8 UTF8.vb --codepage:reset currentcharset.vb
304
305 2005-03-25:1 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
306         * genericparser.cs: another Parse overload to support specifying encoding when parsing from a file.
307         Preparing to implement support for a /codepage option similar to mcs
308
309 2005-03-24 Manjula GHM <mmanjula@novell.com>
310         * mb-tokenizer.cs: To fix parser error for ExternalSource Directives
311
312 2005-03-24 Satya Sudha K <ksathyasudha@novell.com>
313         * mb-parser.jay : 
314                         - Support for Dictionary Member Access Expressions
315                         - Exponentiation operator in compound assignments
316         * expression.cs : Merged 'Exponentiation' class with 'Binary' class
317         * cfold.cs      : Fixed constant division (both '\' and '/')
318
319 2005-03-24 Manjula GHM <mmanjula@novell.com>
320           * mb-parser.jay,mb-tokenizer.cs: Support 'End Statement' in parser and tokenizer file
321
322 2005-03-24 Manjula GHM <mmanjula@novell.com>
323            Sudharsan V <vsudharsan@novell.com>
324           * mb-parser.jay,mb-tokenizer.cs:
325                 Revamped end of block logic 
326
327 2005-03-24 Manjula GHM <mmanjula@novell.com>
328         * statement.cs: Fix bug in 'Exit Function'
329
330 2005-03-23 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
331         * AssemblyInfo.cs: Some more diligent authors
332         * ecore.cs, cfold.cs, delegate.cs: remove warnings-causing code 
333
334 2005-03-22 Satya Sudha K <ksathyasudha@novell.com>
335         * mb-parser.jay
336         * expression.cs :
337                         Fix for 'MyClass' instance expressions 
338
339 2005-03-22 Satya Sudha K <ksathyasudha@novell.com>
340            Sudharsan V <vsudharsan@novell.com>
341         * mb-parser.jay : 
342                         Removed some conflicts in the grammar
343
344 2005-03-21 Manjula GHM <mmanjula@novell.com>
345         * statement.cs: Implementation of 'End' Statement which terminates execution immediately
346
347 2005-03-18 Satya Sudha K <ksathyasudha@novell.com>
348         * mb-parser.jay :
349         * mb-tokenizer.cs :
350         * expression.cs :
351                 Supported 'Like' operator
352
353 2005-03-18 Manjula GHM <mmanjula@novell.com>
354            Sudharsan V <vsudharsan@novell.com>
355           * mb-parser.jay:
356               Some more fixes related to displaying correct line number
357
358 2005-03-17 Manjula GHM <mmanjula@novell.com>
359         *ecore.cs : rounding the double values before converting to Integer types
360
361 2005-03-17 Manjula GHM <mmanjula@novell.com>
362         *ecore.cs : Support Double in case statement and do necessary conversion to Int Literal
363
364 2005-03-16 Manjula GHM <mmanjula@novell.com>
365         * mb-parser.jay:
366                 Support 'expression TO expression' case clause for select statement
367
368 2005-03-15 Satya Sudha K <ksathyasudha@novell.com>
369         * mb-parser.jay :
370         * expression.cs :
371                 Supported '\' (int division) operator
372
373 2005-03-11 Manjula GHM <mmanjula@novell.com>
374            Sudharsan V <vsudharsan@novell.com>
375           * mb-parser.jay:
376               Fixes related to displaying correct line number,error message and handle End of blocks
377
378 2005-03-11 Satya Sudha K <ksathyasudha@novell.com>
379         * expression.cs :
380                          Support for 'Nothing' with all operators.
381                          A few fixes to the 'DoNumericPromotions' method
382         * ecore.cs      :
383                          Fixed Boolean constant conversions
384                          Supported conversion of 'nothing' to value types
385
386 2005-03-10 Manjula GHM <mmanjula@novell.com>
387         *expression.cs :
388                 Support 'Is' for all reference types
389
390 2005-03-10 Satya Sudha K <sathyasudha@novell.com>
391         * mb-parser.jay :
392         * expression.cs :
393                         Support for 'AndAlso' and 'OrElse' operator
394
395 2005-03-09 Manjula GHM <mmanjula@novell.com>
396         *mb-parser.jay :
397         *expression.cs :
398                 Support 'Is' Expression
399
400 2005-03-08 Satya Sudha K <ksathyasudha@novell.com>
401         * ecore.cs      : Included Decimal -> Single/double conversions in 'WideningConversionExists' method
402         * expression.cs : Fixed the behaviour of some Unary operators
403                           Allowing Exponentiation on object types
404
405 2005-03-08 Manjula GHM <mmanjula@novell.com>
406         *assign.cs : Bug fix - new Object creation and object assignment
407
408 2005-03-07 Satya Sudha K <ksathyasudha@novell.com>
409         * mb-parser.jay : Support for shift operators
410         * assign.cs     : Calling 'RuntimeHelpers.GetObjectValue' during new Object creation 
411                            (to make it consistent with vbc)
412         * ecore.cs      : Implicit constant conversions - rounding the float/double values before 
413                           converting to Integer types
414         * expression.cs : 
415                          Unary class :
416                                 * Corrected the opertor names
417                                 * Allowing unary plus and minus on strings (by converting 
418                                   to double)
419                                 * Allowing 'Not' operator on all numeric/string types 
420                                   (float/double/decimal/strings are converted to long)
421                                 * In case of short/byte operations, changing the end result back to short/byte
422                         Exponentiation class :
423                                 * Disallowing '^' operator on dates/char/ reference types
424                         Binary class :
425                                 * Corrected operator names
426                                 * And-ing the right operand with appropriate mask in case of shift operators
427                                 * In case of short/byte operations, changing the end result back to short/byte
428                                 * Re-organised the code of the 'ResolveOperator' method:
429                                         * code organised according to expression types
430                                         * Performing the required conversions before 'OverloadResolve'
431                                         * Did the following fixes :
432                                                 * Fixed string/bool behaviour with logical/shift operators
433                                                 * Disallow arithmatic operators on char and dates
434                                                 * Fixed DateTime comparisons
435                                                 * Using methods of 'System.Decimal' for all Decimal operations
436                                                 * Supporting all operators with enum types
437                                                 * Allowing arithmatic/relational/shift/logical operators on type 'object'
438
439 2005-03-04 Manjula GHM <mmanjula@novell.com>
440         * mb-parser.jay:
441         * assign.cs:
442                 Support Mid Assignment Statement
443
444 2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
445         * driver.cs: correcting the handling of many options. 
446         * Upgraded to latest Mono.GetOptions that supports vbc style boolean arguments /debug+ /debug-, and /help2 to hide less used options
447
448 2005-02-25 Satya Sudha K <ksathyasudha@novell.com>
449         * ecore.cs 
450         * expression.cs: 
451                 Fix for default properties by Raja Harinath
452
453 2005-02-22 Manjula GHM <mmanjula@novell.com>
454         *expression.cs: Handle String and date before Overloadresolve
455                         Added code for char + char
456                         Handle One of operands is value type in Relational operators 
457                         Handle when both are Object types
458
459 2005-02-22 Manjula GHM <mmanjula@novell.com>
460         *expression.cs: Handle Bool w.r.t Logical operators 
461
462 2005-02-21 Manjula GHM <mmanjula@novell.com>
463         *expression.cs: Handle  all cases of relational Operators w.r.t String types 
464
465 2005-02-21 Manjula GHM <mmanjula@novell.com>
466         *mb-parser.jay: Throws error for missing END statements - by Sudharsan V
467
468 2005-02-18 Satya Sudha K <ksathyasudha@novell.com>
469         * ecore.cs :
470                  Modified Implicit Constant conversions to :
471                  * Handle Long/Float/Double Constants also
472                  * Throw a compile time error if constant cannot be converted to a specified type
473                    (as with vbc)
474         * assign.cs :
475         * expression.cs :
476                 Widening Enum constants to constants of underlying type before doing the conversions
477         * cfold.cs :
478                 Added support for exponentiation operator for constants
479         * enum.cs : Allowing double values to be specified as enum values
480
481
482 2005-02-17 Manjula GHM <mmanjula@novell.com>
483         * expression.cs :
484                  Support relational operator for other types
485
486 2005-02-15 Manjula GHM <mmanjula@novell.com>
487         * ecore.cs :
488                  Fixed conversion from char[] to String
489
490 2005-02-15 Manjula GHM <mmanjula@novell.com>
491         * expression.cs: Fixed concat of string and char using '+" operator 
492
493 2005-02-14 Manjula GHM <mmanjula@novell.com>
494         * ecore.cs :
495                  Fixed all String to char conversions
496
497 2005-02-14 Satya Sudha K <ksathyasudha@novell.com>
498         * expression.cs: 
499                  - Fixed one of my previous checkin, which was breaking some test cases.
500         * ecore.cs :
501                  - Fixed the explicit conversion of float/double to integral types in some places.
502
503 2005-02-11 Ritvik Mayank <mritvik@novell.com>
504         * class.cs
505         * decl.cs
506         * mb-parser.jay
507         * statement.cs
508                 Changed for reflecting correct Error Number
509                                                 
510 2005-02-10 Satya Sudha K <ksathyasudha@novell.com>
511         * expression.cs: 
512                  - Implemented Exponentiation operator (^)
513                  - Fixed the behaviour of strings in arithmatic operations (only addition 
514                    was supported before)
515                  - Fixed Decimal arithmatic with float/double types
516                  - If operation = Division, promoting both operands to double, otherwise
517                    doing numeric promotions
518         * mb-parser.jay : Changes related to the Exponentiation operator
519
520 2005-02-10 Manjula GHM <mmanjula@novell.com>
521         * expression.cs: Fixed concat of date and string using '+" operator 
522
523 2005-02-08  Satya Sudha K  <ksathyasudha@novell.com>
524         * assign.cs: Fix for implicit conversions in Compound Assignments
525         * ecore.cs :
526                 - Fixed the explicit conversion of float/double to integral types
527                   by rounding the float/double values before performing the actual 
528                   conversion
529                 - Using 'ConvCast' instead of 'OpcodeCast' for Narrowing conversions
530
531 2005-02-07  Ritvik Mayank <mritvik@novell.com>
532         * modifiers.cs
533         * class.cs
534         * decl.cs
535         * expression.cs
536         * tree.cs
537         * statement.cs
538                     Changed for reflecting correct Error Number.
539
540 2005-02-07  Manjula GHM  <mmanjula@novell.com>
541         * mb-parser.jay: Some more fixes related to displaying correct line number
542
543 2005-02-04  Satya Sudha K  <ksathyasudha@novell.com>
544         * ecore.cs      : Fixed the implicit conversion of float/double to integral types:
545                                 - Rounding the float/double values before performing the actual conversion
546
547         * expression.cs : 1) Added a class 'StringConcat' to handle string concatenations
548                           2) Fixed string conversions in arithmatic operations
549
550         * mb-parser.jay : Create a new 'StringConcat' object (instead of Binary) for concat_expression
551  
552 2005-02-03  Manjula GHM  <mmanjula@novell.com>
553         *mb-parser.jay : Reports error with correct line number in most of the cases covered by existing testcases. Need to cover in expressions and few more areas. 
554  
555 2005-02-03  Manjula GHM  <mmanjula@novell.com>
556         * mbas.csproj
557         * mbas.sln
558         Modified Project and solution files to reflect new changes
559
560 2005-01-29  Ritvik Mayank  <mritvik@novell.com>
561         * ecore.cs : 
562         * class.cs : 
563         * cfold.cs : 
564         * attribute.cs : 
565         * statement.cs : 
566         * mb-parser.jay : 
567                 Changed for reflecting correct Error Number/Message.
568         
569 2005/01/29 Satya Sudha K <ksathyasudha@novell.com>
570         * ecore.cs : Added code for String conversions.
571
572 2005/01/28 Satya Sudha K <ksathyasudha@novell.com>
573         * ecore.cs : Added a few fixes for Boolean to Numeric Conversions
574
575 2005/01/25 Satya Sudha K <ksathyasudha@novell.com>
576         * ecore.cs : Added support for Implicit numeric conversions.
577                 Most of the work on this patch done by Jambunathan K
578
579 2005/01/17 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
580         * driver.cs : correct handling of /imports command-line option.
581                 Patch from Hans Kratz <kratz@omnicore.com>
582
583 2005-01-13  Ritvik Mayank  <mritvik@novell.com>
584         * mb-parser.jay: Changed Error Number for Modifiers.PRIVATE to throw the right ExceptionNumber as 31089 .       
585         * mb-parser.jay: Added Modifiers.PROTECTED to throw the right Error Number as 31047 . 
586                   
587 2005-01-13  Ritvik Mayank  <mritvik@novell.com> 
588         * ecore.cs: Changed the Error Number for setter as 30526 and getter as 30524 in Expression DoResolveLValue .
589         * expression.cs: Changed the Error Number for set == null as 30526 and get == null as 30524 .
590
591 2005-01-13  Ritvik Mayank  <mritvik@novell.com>
592         * statement.cs: For 'if (RedimTarget.Type.GetArrayRank() != args.Count)' changed the Error Number as 3415 .
593
594 2005-01-12 Anirban Bhattacharjee <banirban@novell.com>
595         * mb-parser.jay: Replaced "logical_end_of_line" with "end_of_stmt" in couple of places
596                          to support delemeter ':' along with "EOL" as end of statement
597
598 2005-01-12 Anirban Bhattacharjee <banirban@novell.com>
599         * statement.cs: Another trivial correction 
600
601 2005-01-11 Anirban Bhattacharjee <banirban@novell.com>
602         * statement.cs: A trivial correction in yesterday's check-in
603
604 2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
605         * mb-parser.jay:
606         * class.cs:
607         * statement.cs:
608         * rootcontext.cs:
609         * mb-tokenizer.cs:
610         * decl.cs:
611         * expression.cs:
612         * attribute.cs:
613         * enum.cs:
614         * codegen.cs:
615                 Removed warnings from all the above files which were showing up during make
616
617
618 2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
619         * mb-parser.jay: Check for the overloaded property  
620
621 2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
622         * class.cs: A better check provided before adding a property to TypeContainer
623
624 2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
625         * class.cs:
626         * Attribute.cs
627         * mb-parser.jay
628         * pending.cs:
629         * typemanager.cs:
630                 IndexerName variable is now known as DefaultPropName in the above files
631
632 2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
633         * mb-parser.jay: A check which restrict declaring more than one property
634                         as default within same class
635
636 2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
637         * class.cs: -Mbas will emit DefaultMemberConstuctor attribute for the class
638                     which is having Default Property so that it can be recognized by
639                     other assemblies
640                     - Removed Indexer class and some of the legacy code inherited from mcs
641         * typemanager.cs: Initialized DefaultMemberAttribute constructor info   
642
643 2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
644         Ooops small bits on:
645         * driver.cs: -q --quiet works, inclusive for the "Alpha" message
646         * Test/misc/Makefile : Added dependency on newly compiled compiler for the test executable
647
648 2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
649         * driver.cs: it was "monostyled" and some extract method refactorings to make things clear
650         now -q --quiet works, inclusive for the "Alpha" message
651         * Test/misc/Makefile : Added dependency on newly compiled compiler for the test executable
652
653 2004-11-30 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
654         * Test/misc/Makefile : Compile new RedimPreserve.vb test source
655         * Added Test/misc/RedimPreserve.vb
656     
657 2004-11-30  Alexandre Rocha Lima e Marcondes <alexandremarcondes@psl-pr.softwarelivre.org>
658         * Makefile: Included Microsoft.VisualBasic.dll assembly on LOCAL_MCS_FLAGS.
659         * expression.cs: Created class Preserve to implement REDIM PRESERVE syntax.
660         * statement.cs: Implemented REDIM PRESERVE syntax on Redim.Resolve().
661
662 2004-11-25  Raja R Harinath  <rharinath@novell.com>
663         * Makefile (SUBDIRS): Just list Test.
664         (mb-parser.cs): Depend on jay/skeleton.cs.
665
666 2004-11-25  Raja R Harinath  <rharinath@novell.com>
667
668         Update to changes in jay/skeleton.cs.
669         * genericparser.cs (yacc_verbose_flag): Change to 'int'.
670         * mb-parser.jay (parse): Update to changes.
671         * driver.cs (verbose): Likewise.
672
673 2004-11-24  Jambunathan K  <kjambunathan@novell.com>
674         * class.cs: Factored out classes - 1) GetMethod and SetMethod from
675         Property and 2) AddDelegateMethod and RemoveDelegateMethod from
676         Event respectively.
677         
678         * mb-parser.jay: Related changes.
679
680 2004-11-22  Jambunathan K  <kjambunathan@novell.com>
681         * enum.cs: Factored out a new class EnumMember from the existing
682         class Enum. Much of the functionality that existed in
683         Enum.LookupEnumValue() is now moved in to
684         EnumMember.DoDefineMember().
685
686         One significant departure from the previous Enum implmenentation
687         is that now the resolution of an EnumMember's value happens in the
688         EmitContext set up for the Enum.
689         
690         * attribute.cs: 
691         * expression.cs: Trivial changes related to the above change.
692
693 2004-11-22  Jambunathan K  <kjambunathan@novell.com>
694         * Makefile: Added new make target 'consolidate-test-results'.
695
696 2004-11-22  Jambunathan K  <kjambunathan@novell.com>
697         * Makefile: Run "make run-test" or "make run-test-ondotnet" to
698         exercise mbas test cases.
699
700         * testmbas: Moved the test files under this directory to Test/misc
701         where it rightfully belongs.
702
703 2004-11-17  Jambunathan K  <kjambunathan@novell.com>
704         * attribute.cs: Temporarily made Attribute.UnManagedType public.
705         
706         * class.cs: Removed the instance method
707         MethodCore.LabelParameters() and moved it's functionality to the
708         new instance methods Parameters.LabelParameters() and
709         Parameter.DefineParameter().
710         
711         * parameter.cs: Introduced new instance methods
712         Parameters.LabelParameters() and Parameter.DefineParameter() and
713         slightly improved Parameter.ApplyAttributeBuilder().
714         
715 2004-11-17  Jambunathan K  <kjambunathan@novell.com>
716         * mb-parser.jay: During multi-file compilation, global attributes
717         were not getting parsed properly. Fixed the same.
718         
719 2004/10/22 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
720         * mb-parser.jay : correcting global attributes handling, because it was 
721            issuing wrong warnings for trivial files like testmbas/WriteOK.vb.
722         * Makefile : adding testmbas/AssemblyInfo.vb to some test compilations 
723
724 2004-11-10  Jambunathan K  <kjambunathan@novell.com>
725         * attribute.cs: 1) Replaced the static method
726         Attribute.GetValidPlaces() with an equivalent instance method
727         Attribute.GetValidTargets() 2) Added new methods Attributes.Emit
728         () and Attribute.Emit(). 3) Migrated functionality of
729         ApplyAttributes to ApplyAttributeBuilder of respective classes.
730
731         * class.cs, decl.cs, codegen.cs, const.cs, parameter.cs :
732         Implemented ApplyAttributeBuilder() in the following classes:
733         TypeContainer, Constructor, Field, Property, Event, DeclSpace,
734         AssemblyClass, ModuleClass, Const, Method, Parameter.
735         
736         * codegen.cs: Implemented Emit() in the following classes:
737         AssemblyClass and ModuleClass.
738
739         The ApplyAttributeBuilder() is currently just a placeholder for
740         future code that is yet to come.
741
742 2004-11-09  Jambunathan K  <kjambunathan@novell.com>
743         * class.cs: Coalesced the functionality of Property and
744         PropertyBase in to Property class and removed the class
745         PropertyBase.
746
747
748 2004-11-09  Jambunathan K  <kjambunathan@novell.com>
749
750         * attribute.cs: Injected a new virtual property
751         Attributable.AttributeTargets
752
753         * decl.cs: Made MemeberCore a derived class of
754         Attributable.
755
756         * parameter.cs: Made Parameter a derived class of
757         Attributable.
758         
759         * class.cs: Commented out the "never used" class Indexer. I
760         suspect that the class will never be required in VB.NET context
761         and can possibly be stripped off after careful inspection.
762
763         * tree.cs, module.cs, interface.cs, enum.cs, delegate.cs,
764         const.cs, codegen.cs: Changes necessiated by the above changes.
765
766 2004-11-07  Jambunathan K  <kjambunathan@novell.com>
767         * typemanager.cs: Removed TypeManager.builder_to_attr which was
768         redundant and replaced LookupAttr with LookupClass.
769
770         * rootcontext.cs: 
771         * module.cs: Miscellaneous changes
772
773         * mb-parser.jay: Upadted actions of the attributes grammar
774
775         * codegen.cs: 1) Introduced new classes CommonAssemblyModulClass,
776         AssemblyClass, ModuleClass 2) Introduced following methods
777         CodeGen.AddGlobalAttributes, CodeGen.EmitGlobalAttributes
778
779         * class.cs: Factored out TypeContainer.AttributeUsage
780
781         * attribute.cs: 1) Factored out Attribute.UsageAttribute and
782         Attribute.GetAttributeUsage 2) Introducing the new base class
783         Attributable from which all Attributable types will be derived in
784         the future 3) Added new accessors Attribute.IsAssemblyAttribute
785         and Attribute.IsModuleAttribute
786
787 2004-11-06  Jambunathan K  <kjambunathan@novell.com>
788         * rootcontext.cs: Removed the static field -
789         RootContext:global_attribute.
790
791 2004-11-06  Jambunathan K  <kjambunathan@novell.com>
792         * class.cs: 
793         * attribute.cs: Removed the incomplete and (for now) unnecessary
794         Mono.MonoBASIC.Operator class. Let us bother about this later.
795
796         Stripping off these unused bits will help me in 1) refactoring the
797         mbas Attributes related code 2) reusing the code from the mcs code
798         base.
799         
800 2004-11-06  Jambunathan K  <kjambunathan@novell.com>
801         * class.cs: Removed the incomplete and (for now) unnecessary
802         operator methods. Let us bother about this later.
803
804 2004-11-06  Jambunathan K  <kjambunathan@novell.com>
805         * attribute.cs: Removed the redundant AttributeSection class and
806         moved it's functionality to Attributes class. 
807         * class.cs: 
808         * mb-parser.jay: 
809         * module.cs: Replaced references to AttributeSection with the equivalent constructs.
810         * rootcontext.cs: Removed the following unused methods
811         AddGlobalAttribute and AddGlobalAttributeSection.
812
813 2004-11-03 Anirban Bhattacharjee <banirban@novell.com>
814         * mb-parser.jay: Trivial fix for bug #68985
815
816 2004-11-04  Jambunathan K  <kjambunathan@novell.com>
817         * mb-parser.jay: Syntactic error handling for attribute grammar.
818
819 2004-10-25 Anirban Bhattacharjee <banirban@novell.com>
820         * statement.cs: VB .Net specific exception number
821
822 2004-10-25 Anirban Bhattacharjee <banirban@novell.com>
823         * mb-parser.jay: Enhanced catch grammar to accept
824                         'When' clause
825         * statement.cs: Changed Catch and Try classes accordingly
826                         to emit catch statement conditionally           
827
828 2004/10/22 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
829         * driver.cs : accept also -t:library as vbc does, besides /target:library
830
831 2004-10-21 Anirban Bhattacharjee <banirban@novell.com>
832         * statement.cs: Introduced few specific execptions
833                         Changed exception number
834
835 2004-10-21 Anirban Bhattacharjee <banirban@novell.com>
836         * statement.cs: A trivial fix to get Exit Try working 
837
838 2004-10-21  Jambunathan K  <kjambunathan@novell.com>
839         * typemanager.cs (LookupType, LookupTypeDirect): Added a negative
840         cache for failed type lookups (stolen from mcs' typemanager.cs).
841         mbas gets a performance boost of about 20 times due to this
842         change.
843
844         * driver.cs (MainDriver): Made the warning message a little less
845         scary and more inviting for first time users.
846
847 2004-10-19 Anirban Bhattacharjee <banirban@novell.com>
848         * mb-parser.jay: Enhanced For Each...Next statement grammar
849
850 2004-10-15 Anirban Bhattacharjee <banirban@novell.com>
851         * mb-parser.jay: Little improvement in For...next statement
852
853 2004-10-14 Anirban Bhattacharjee <banirban@novell.com>
854         * mb-parser.jay: For statement is enabled to take
855                 optional declaration of the counter variable.
856                 E.g. now for statement can be declared as
857                 For i as integer = 0 to 5
858                 End For
859
860 2004/10/08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
861         * Makefile: added target 'profile', changed some sources in testmbas/ to use for that purpose.
862
863 2004-10-11 Anirban Bhattacharjee <banirban@novell.com>
864         * mb-parser.jay: More improvement in 'IF' statement
865
866 2004-10-11 Anirban Bhattacharjee <banirban@novell.com>
867         * mb-parser.jay: If statement is enabled to parse
868                 following type of statement
869                 If <condition> Then <statement> else <statement>
870
871 2004/10/08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
872         * typemanager.cs: Changing StandardModule to use less memory, by doing string 
873                 concatenation only once. It was wasting 1 MB on the test case.
874
875 2004-10-06 Anirban Bhattacharjee <banirban@novell.com>
876         * mb-parser.jay: Added support for Call keyword in invocation statement
877
878 2004-10-01 Anirban Bhattacharjee <banirban@novell.com>
879         * ecore.cs: Bug fixing - when event raised from other assembly
880
881 2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
882         * mb-parser.jay:
883         * statement.cs:
884                 Removed unused event_target field from
885                 AddHandler and RemoveHandler
886
887 2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
888         * mb-parser.jay: RemoveHandler function made cleaner
889
890 2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
891         * expression.cs:
892         * ecore.cs:
893                 Fix for resolution of event expression 
894                 when we have a AddHandler statement 
895                 like 
896                 AddHandler Me.E, AddressOf Me.EH
897                 Submitted by Raja Harinath<rharinath@novell.com>
898
899 2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
900         * mb-parser.jay: Unnecessary to and fro conversion of types
901                         is removed from AddHandler function
902
903 2004-09-23 Anirban Bhattacharjee <banirban@novell.com>
904         * expression.cs: Enhanced mbas to resolve Default property or indexer
905
906 2004-09-21 Anirban Bhattacharjee <banirban@novell.com>
907         * mb-parser.jay: Fixed bug #66231 -
908          Now, Me.SubName, MyBase.SubName or any other qualified name 
909          is supported by AddressOf operator
910
911 2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
912         * enum.cs: Made Enum member lookup case insensitive
913
914 2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
915         * support.cs: Retrieving default value from another assembly in ReflectionParameters class
916
917 2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
918         * class.cs: Support for enum in default constant value for optional parameters
919
920 2004-09-14 Anirban Bhattacharjee <banirban@novell.com>
921         * mb-parser.jay: Fixed exception number for type confliction in method parameter
922
923 2004-09-14 Anirban Bhattacharjee <banirban@novell.com>
924         * class.cs: Set default constant value for optional parameters in ParameterBuilder
925         * parameter.cs: Setting optional attribute
926                 These two fixes makes sure that optional parameter with default value get emitted correctly
927
928 2004-08-27 Anirban Bhattacharjee <banirban@novell.com>
929 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
930         * mb-parser.jay: fix CopyTo args when parsing parameters
931
932 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
933         * expression.cs: cope with ParamArray for no args
934         * mb-parser.jay: dump parsing exception with --stacktrace
935
936 2004/08/19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
937         * mb-parser.jay : some changes just not to stumble in global attributes definitions in multiple-lines 
938                 like we have in VS.NET generated AssemblyInfo.vb files. still need to really process that definitions like mcs does
939
940 2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
941         * mb-parser.jay:
942         * mb-tokenizer.cs: first cut at implementing
943         op assign
944
945 2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
946         * ecore.cs:
947         * enum.cs:
948         * expression.cs:
949         * mb-parser.jay:
950         * support.cs: work on improving overload resolution
951
952 2004-08-30 Bernie Solomon <bernard@ugsolutions.com>
953         * class.cs (FindMembers): filter on modflags
954         for constructors & constructors are never inherited
955
956         * decl.cs (SetupCache): constructors are not
957         inherited
958
959 2004-08-27 Anirban Bhattacharjee <banirban@novell.com>
960         * driver.cs: bug fixing - #63580
961
962 2004/08/19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
963         * testmbas/WriteOk.vb : Use Mono.GetOptions from VB.NET
964         * Makefile : exercise new option processing in test program [make-run-local target]
965
966 2004-08-26 Bernie Solomon <bernard@ugsolutions.com>
967         * mb-parser.jay: rework parsing of ParamArray parameters
968
969 2004-08-23 Bernie Solomon <bernard@ugsolutions.com>
970         * mb-parser.jay: cope with more varieties of array declarations
971
972 2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
973         * statement.cs: Bug fixing - Prevent AddHandler from getting resolved second time. This is critical for ASP programs with VB.
974
975 2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
976         * expression.cs: Bug fixing - reference to the current type is fixed during BaseAccess resolution
977
978 2004/08/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
979         * driver.cs : Some cleanup, also renamed checked option as it was removeintchecks in disguise
980
981 2004-08-18 Anirban Bhattacharjee <banirban@novell.com>
982         * mb-parser.jay: MyBase support in Handles clause e.g. 
983                                 Sub EH() Handles MyBase.E
984
985 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
986         * mb-parser.jay: Trivial fix (#63213)
987
988 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
989         * class.cs:
990         * typemanager.cs:
991                 -Bug fixed to resolve the ReadOnly properties from base class
992                 -Fixed bug in resolving properties from different assembly
993
994 2004-08-14 Bernie Solomon <bernard@ugsolutions.com>
995         * mb-parser.jay: fix block used as body of For Each
996
997 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
998         * expression.cs: Bug fixing for compiling VB script generated by ASP page - AddressOf operator in a method argument will resolve methods outside assembly
999
1000 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
1001         * class.cs: bug fixing to get PropertyE.vb test running - search of overridable property in base class was failing
1002
1003 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
1004         * typemanager.cs: Little correction in my last checked-in code - removed unnecessary return value from ExpandAllInterfaces function
1005
1006 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
1007         * class.cs: Trivial bug fixing to get test InterfaceB.vb going
1008
1009 2004-08-13 Rob Tillie <Rob.Tillie@student.tul.edu>
1010         * ecore.cs: added runtime conversion from string to DateTime (fixes test 13329).
1011         
1012 2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
1013         * class.cs:
1014         * typemanager.cs:
1015         * pending.cs:
1016                 Multiple interface inheritance implemented - fix for getting InheritanceD.vb working in bteasts         
1017
1018 2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
1019         * mb-parser.jay: Implements support in Abstract methods
1020
1021 2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
1022         * class.cs: Support for abstract method resolution
1023         * pending.cs: Type of pending_implementations is set to base type
1024                       Changed method names IsInterfaceIndexer and IsInterfaceMethod to IsAbstractIndexer and IsAbstractMethod respectively to make them more meaningful
1025
1026 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
1027         * mb-parser.jay: first cut at TypeOf ... Is
1028
1029 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
1030         * expression.cs:
1031         * ecore.cs: More enum changes to handle
1032         implicit conversions better
1033
1034 2004-08-11 Anirban Bhattacharjee <banirban@novell.com>
1035         * mb-parser.jay: Interface inheritance made better
1036
1037 2004-08-09  Jambunathan K  <kjambunathan@novell.com>
1038         * mb-parser.jay: Sanitized parser's generic error message 
1039
1040 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
1041         * enum.cs: Enum members became enum type now, instead of underlying type
1042
1043 2004-08-07 Bernie Solomon <bernard@ugsolutions.com>
1044         * mb-parser.jay: Implement GetType(x) 
1045         implement Is as equals for the moment so it can be used
1046
1047 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
1048         * mb-parser.jay: Check for empty enum declaration
1049
1050 2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
1051         * class.cs: 
1052         * mb-parser.jay:
1053                 Multiple Implements for a particular type member got implemented
1054
1055 2004-08-06  Bernie Solomon  <bernard@ugsolutions.com>
1056
1057         * support.cs: Make ReflectionParameter behave
1058         like InternalParameter for byref args.
1059         * expression.cs: Cope with byref args in
1060         an imported DLL
1061
1062 2004-08-06  Jambunathan K  <kjambunathan@novell.com>
1063         * mb-parser.jay: Changed expression grammar so that it now has a
1064           better semblance to those defined in section 11 of VB.NET spec.
1065           The 'expression' rule as it is now could possibly be buggy. So
1066           another iteration is a must.
1067
1068 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
1069         * mb-parser.jay: Small bug fix in Event grammar
1070
1071 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
1072         * class.cs: Event still needed to have a constructor which takes value of Implements clause.
1073         * mb-parser.jay: Passing Implements clause value to the constructor
1074
1075 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
1076         * decl.cs:
1077         * rootcontext.cs:
1078                 Exception number made aligned to VB .net
1079
1080 2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
1081         * class.cs: Improvements in the implementation of Implements clause in Type members
1082
1083 2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
1084         * mb-parser,jay: Implements clause added to Event grammar
1085
1086 2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
1087         * mb-parser.jay: Interface event declaration grammar rewritten
1088
1089 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
1090         * class.cs: Introduced check for valid interface name in Implements clause. 
1091
1092 2004-08-04  Jambunathan K  <kjambunathan@novell.com>
1093         * mb-tokenizer.cs: 
1094         * mb-parser.jay: 
1095
1096         1) Fixed the Attributes grammar starting with
1097            opt_attributes. Introduced new rules starting with
1098            opt_global_attributes rule - section 5.2 of VB.NET spec
1099
1100         2) Introduced new Tokens that correspond to reserved but unused
1101            VB.NET keywords. Added some comments as appropriate in the
1102            keywords hashtable of tokenizer - section 2.3 of VB.NET spec.
1103
1104         3) Corrected 'imports_term' - section 6.3.1 & 6.3.2 of VB.NET
1105            spec.
1106
1107         4) Introduced opt_argument_list - section 5.2 of VB.NET spec
1108
1109         5) Corrected namespace_declaration - section 6.4.1 of VB.NET spec
1110         
1111
1112 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
1113         * mb-parser.jay: Added support for modifiers and attributes in interface member grammar
1114
1115 2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
1116         * mb-parser.jay: Property types made optional
1117
1118 2004-08-03 Anirban Bhattacharjee <banirban@novell.com>
1119         * mb-parser.jay: Interface method and property grammar got changed
1120                          Support for multiple implements in class 
1121         * interface.cs: Interface class has got changed
1122                         All other interface types have been removed
1123         * class.cs: Property's Define and CheckBase method changed significantly to be in sync with Interface
1124         * pending.cs: few related changes 
1125         * attribute.cs: few related changes
1126
1127 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1128         * mb-parser.jay : Some correction as pointed by Jambunathan, 
1129                 to allow preprocessor directives after a label that may 
1130                 leave it orphaned (without a explicit statement)
1131         * testmbas/WriteOK.vb : some vb code to test this case
1132
1133 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1134         * mb-parser.jay : Some correction as pointed by Jambunathan, 
1135                 to allow intermixing preprocessor directives between 
1136                 the label and it's associated statement
1137
1138 2004-08-02  Jambunathan K  <kjambunathan@novell.com>
1139         * mb-tokenizer.cs: Oops. Also pulled out all of the old
1140         pre-processor code that is no more used.
1141
1142 2004-08-02  Jambunathan K  <kjambunathan@novell.com>
1143         * mb-tokenizer.cs: Fixed a bug where line nos were 
1144         failing to get incremented when the line continuation 
1145         character was appearing by itself on contiguous lines.
1146         
1147         * mb-parser.jay: Fixed the #ExternalSource actions
1148         so that ExternalSourceDirectivesC4.vb compiles and 
1149         reports source & line nos as expected.
1150
1151         * location.cs: Replaced the existing unintuitive, not
1152         so efficient implementation of struct Location {} with 
1153         the one available in mcs with one minor difference: The
1154         number of bits reserved for a file index in the Token
1155         is statically fixed at 8 bits.
1156
1157 2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1158         * mb-parser.jay : Revised patch from João Viegas for the labeled_statement accepting integer literals as labels
1159
1160 2004-07-30  Jambunathan K  <kjambunathan@novell.com>
1161         * mb-parser.jay: Oops. Reversed unintended checkin.
1162         * mb-tokenizer.cs: Added comment in Tokenizer() 
1163         * mb-parser.jay: Fixed miscellaneous bugs in handling of 
1164         pre-processor directives. There are two positive test 
1165         cases that fail currently: ExternalSourceDirectivesC4.vb
1166         and RegionDirectivesC1.vb
1167
1168 2004-07-30  Raja R Harinath  <rharinath@novell.com>
1169
1170         * mb-parser.jay (IfElseStateMachine.State, IfElseStateMachine.Token): 
1171         Remove [Flags] attribute.
1172
1173 2004-07-30  Jambunathan K  <kjambunathan@novell.com>
1174         * mb-parser.jay: 
1175         * mb-tokenizer.cs: Added support for #region, #externalsource
1176         and conditional compilation pre-processor directives.
1177         Conditonal directives currently accept only boolean literals
1178         as conditonal expressions. 
1179         
1180         * mb-parser.jay: The original checkin hits a bug in mcs but
1181         compiles fine with csc. This checkin is to workaround the mcs
1182         bug so that cvs builds are not broken.
1183         
1184         
1185 2004/07/26  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1186         * mb-parser.jay : First try at SyncLock Statement #53230
1187
1188 2004-07-22 Anirban Bhattacharjee <banirban@novell.com>
1189         * argument.cs:
1190         * expression.cs:
1191                 Little betterment in resolution of parameter with Addressof operator in method argument
1192
1193 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
1194         * expression.cs: Resolution of fully qualified type names - bug fixed
1195
1196 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
1197         * assign.cs: Added new argument to Expression.ConvertExplicit function call
1198
1199 2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
1200         * expression.cs: Fixed resolution of overloaded functions with delegate as parameter
1201         * ecore.cs: Changes made to stop program getting into an endless loop on not able to cast types of source to destination object.
1202         * statement.cs: Added new argument to Expression.ConvertExplicit function call
1203
1204 2004-07-18 Anirban Bhattacharjee <banirban@novell.com>
1205         * argument.cs: Introduced AddressOf argument type for tracking AddressOf operator in method parameter
1206         * expression.cs: A parameter with AddressOf operator will get converted to Delegate before overload resolution
1207         * 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
1208                 This is a fix for bug #59555
1209
1210 2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1211         * driver.cs : Implemented support for -pkg to match mcs (bug #58673)
1212
1213 2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1214         * driver.cs : started implementing -pkg support to match mcs (bug #58673), also corrected multiplicity for addmodule option
1215
1216 2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
1217         * driver.cs: Added support for AddModule compiler option
1218         * 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.
1219
1220 2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
1221         * driver.cs: Compilation to module is supported now
1222
1223 2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
1224         * mb-parser.jay:
1225         * class.cs:
1226                 Default modifier for constructor is set to Public
1227
1228 2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
1229         * 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"
1230
1231 2004-07-07 Anirban Bhattacharjee <banirban@novell.com>
1232         * expression.cs: bug fixed - 60399
1233
1234 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
1235         * mb-parser.jay: Small correction in delegate declaration grammar
1236
1237 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
1238         * mb-parser.jay: modified RemoveHandler function
1239         * statement.cs: Added RemoveHandler statement class
1240
1241 2004-06-13 Anirban Bhattacharjee <banirban@novell.com>
1242         * mb-parser.jay: Modified grammar for several syntax of AddressOf operator
1243
1244 2004/06/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1245         * typemanager.cs : GetPertinentStandardModules receives the array now with params modifier to help usage
1246         * ecore.cs : correcting lookup of semi-qualified standard modules members - A little better but not there yet
1247
1248 2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
1249         * mb-parser.jay: Grammar added for RemoveHandler statement
1250
1251 2004-06-10 Anirban Bhattacharjee <banirban@novell.com>
1252         * mb-parser.jay:
1253         * expression.cs:
1254                 Added support for statement like
1255                         delgate_name = AddressOf sub_name
1256
1257 2004-06-09  Raja R Harinath  <rharinath@novell.com>
1258
1259         * Makefile (HAS_TEST): Remove.
1260         (run-test-local): Move rule to and depend on ...
1261         (run-mbas-test): ... this.
1262
1263 2004-06-08 Anirban Bhattacharjee <banirban@novell.com>
1264         * mb-parser.jay:
1265         * statement.cs:
1266                 Few exception checks for Event
1267
1268 2004-06-07 Anirban Bhattacharjee <banirban@novell.com>
1269         * mb-parser.jay: Resolved the problem in Sub statement with Handles cluse
1270         * class.cs: Added a AddEventHandler function and a EventHandler readonly property. Also modified define of constructor to accommodate Handlers clause.          
1271                     If one initialize a event handler as
1272                         Sub Handler() Handles x.Event
1273                     The handler will be initialized by the constructor of the corresponding class by calling AddHandler.
1274
1275 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
1276         * mb-parser.jay: Modified WithEvents grammar    
1277
1278 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
1279         * class.cs: - NotOverridable modifier support added to Property
1280                     - Few overriding related checks put on Property
1281  
1282 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
1283         * decl.cs: Check for duplicate member name within same container
1284
1285 2004-06-04 Anirban Bhattacharjee <banirban@novell.com>
1286         * class.cs: changed exception number in event grammar
1287
1288 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
1289         * mb-parser.jay: RaiseEvent grammar fixed to get it working
1290
1291 2004-06-03 Anirban Bhattacharjee <banirban@novell.com>
1292         * driver.cs: fixed bug - 59540
1293
1294 2004-06-01 Anirban Bhattacharjee <banirban@novell.com>
1295         * mb-parser.jay: Improved event declaration grammar
1296
1297 2004/05/31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1298         * AssemblyInfo.cs : Anirban is and author too
1299
1300 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
1301         * delegate.cs:
1302         * expression.cs:
1303                 Few exception checks for delegete
1304
1305 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
1306         * mb-parser.jay:
1307         * delegate.cs:
1308                 Few more fixes in delegate grammar              
1309
1310 2004-05-27 Anirban Bhattacharjee <banirban@novell.com>
1311         * mb-parser.jay: Changed Delegate instantiation grammar to get it working
1312
1313 2004-05-26 Anirban Bhattacharjee <banirban@novell.com>
1314         * mb-parser.jay:
1315         * class.cs:
1316                 Few property related checks applied
1317
1318 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
1319         * class.cs: Check for ReadOnly and WriteOnly modifiers added to property
1320
1321 2004-05-24 Anirban Bhattacharjee <banirban@novell.com>
1322         * mb-paresr.jay: Support for abstruct property is added
1323
1324 2004-05-24  Raja R Harinath  <rharinath@novell.com>
1325
1326         * Makefile (PROGRAM_INSTALL_DIR): Install mbas into
1327         $(prefix)/lib/mono/1.0.
1328
1329 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
1330         * mb-parser.jay: few Property related grammar changes
1331
1332 2004-05-14 Anirban Bhattacharjee <banirban@novell.com>
1333         * mb-tokenizer.cs: Bug fixed - Got Property working
1334
1335 2004-05-10 Anirban Bhattacharjee <banirban@novell.com>
1336         * mb-parser.jay: Support added for attaching Attributes in methods
1337
1338 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1339         * AssemblyInfo.cs : Correcting information and version number
1340
1341 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
1342         * enum.cs: bug fixing - setting one enum member to another
1343
1344 2004-04-29 Anirban Bhattacharjee <banirban@novell.com>
1345         * enum.cs:
1346         * expression.cs:
1347                 Implemented check for access modifier in enum
1348
1349 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
1350
1351         * typemanager.cs: Property.GetGetMethod() does not return the method if it
1352         is private (it did until now because of a bug). Make sure it works as it 
1353         worked before the fix.
1354
1355 2004-04-28 Anirban Bhattacharjee <banirban@novell.com>
1356         * expression.cs: fixed bug to get enum running
1357         * enum.cs: handling several negative scenarios 
1358                    Changed several exception numbers
1359         * assign.cs: Changed exception number
1360
1361 2004-04-26  Jackson Harper  <jackson@ximian.com>
1362
1363         * Makefile: Get libs from default profile directory.
1364         
1365 2004-04-23 Anirban Bhattacharjee <banirban@novell.com>
1366         * mb-parser.jay: Grammar changes for array
1367         * expression.cs: exception number changed for "Incorrectly structured array initializer" exception
1368
1369 2004-04-17 Anirban Bhattacharjee <banirban@novell.com>
1370         * mb-parser.jay:
1371         * class.cs:
1372         * const.cs
1373                 a little better structure grammar
1374
1375 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
1376         * mb-parser.jay: few clean-ups
1377
1378 2004-04-16 Anirban Bhattacharjee <banirban@novell.com>
1379         * class.cs: Duplicate entry point exception number changed
1380                     Checked delaration of Types, fields, methods as Protected if they are member of Module type
1381         * const.cs: Checked delaration of constructor as Protected if it is member of Module type
1382         * driver.cs: exception number is changed for "Entry point does not exist" exception
1383
1384 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
1385         * mb-parser.jay: Classes can't be delared static impicitly as other module members
1386
1387 2004-04-15 Anirban Bhattacharjee <banirban@novell.com>
1388         * class.cs: Couple of bug fixes in defining default static constructor, partially imposed by the fix earlier
1389
1390 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
1391         * class.cs: Added support for Shadows modifier in Variables
1392
1393 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
1394         * const.cs: Added support for Shadows modifier in constant
1395
1396 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
1397         * expression.cs: Removed the check which was stoping type instances to access the shared variables
1398
1399 2004-04-14 Anirban Bhattacharjee <banirban@novell.com>
1400         * modifiers.cs: changed exception number for invalid modifiers exception
1401
1402 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
1403         * mb-parser.jay: Removed 'static_constructor_declaration' - this is not required as 'constructor_declaration' implementation is good enough to handle static constructors too
1404         * class.cs: Handling couple of negative scenarios related to static constructors and bug fixes
1405
1406 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
1407         * class.cs: Couple of negative scenario handling
1408
1409 2004-04-13 Anirban Bhattacharjee <banirban@novell.com>
1410         * mb-parser.jay: Few clean-up
1411
1412 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
1413         * mb-parser.jay: Bug fixed - Base class ctor was getting called twice when called explicitly from the derived class ctor as MyBase.New
1414
1415 2004-04-12 Anirban Bhattacharjee <banirban@novell.com>
1416         * mb-parser.jay: Fixed bugs for calling ctor from another ctor in the same class by using statments like
1417                 Me.New 
1418                 or 
1419                 MyClass.New
1420
1421 2004/04/07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1422         * mb-tokenizer.cs : Better error message when dealing with date literals
1423
1424 2004-04-06 Anirban Bhattacharjee <banirban@novell.com>
1425         * class.cs:
1426         * ecore.cs:
1427         * expression.cs:
1428         * modifiers.cs:
1429         Changed/added serveral Accessibility related expections 
1430
1431 2004-04-05 Anirban Bhattacharjee <banirban@novell.com>
1432         * class.cs:
1433         * decl.cs:
1434         * expression.cs:
1435         * pending.cs: 
1436         Several error messages and numbers are changed in all the above four classes
1437
1438 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
1439         * delegate.cs: changed default access modifier
1440         * enum.cs: changed default access modifier
1441         * interface.cs: changed default access modifier
1442         * modifiers.cs: extension of bug fixed for getting NotOverridable modifier working for methods
1443
1444 2004-04-04 AnirbanBhattacharjee <banirban@novell.com>
1445         * class.cs: Changed exception messages and their numbers to align better with VB
1446                     Changed default access modifier of method to Public
1447                     Bug fixed to get NotOverridable modifier working
1448         * decl.cs:  Changed exception messages and numbers
1449
1450 2004-03-25 Anirban Bhattacharjee <banirban@novell.com>
1451         * class.cs: bug fixing - creating default constructor when no constructor is specified
1452         Few modifiers are changed to align with Vb
1453
1454 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1455         * typemanager.cs :  being more carefull with null arguments in some places, 
1456                                                 null checking in GetPertinentStandardModules() loop
1457         * namespace.cs : a helper ToString override 
1458         * ecore.cs : Dealing with finding more than a pertinent standard module having a global member
1459         * testmbas/WriteOk.vb : Exercising correct standard module resolution
1460     NOTE: Almost there for Bug #52067 - just the semi-qualified case isn't working 
1461
1462 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
1463         * mb-parser.jay: handled implicit static modifier for module members in const
1464         * const.cs: changed supported modifiers
1465
1466 2004-03-23 Anirban Bhattacharjee <banirban@novell.com>
1467         * modifiers.cs: Return name of the modifiers' changed to vb specific
1468
1469 2004/03/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1470         * ecore.cs : now it gets the correct list of namespaces in scope (either imported or current) Almost there for Bug #52067 
1471
1472 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
1473         * mb-parser.jay: One more negative scenario is addressed in const grammar
1474
1475 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
1476         * const.cs: Change type of constant to the type of its value if no explicit type declaration found
1477
1478 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
1479         * mb-parser.jay: Grammar for declaring constant inside block is changed
1480
1481 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
1482         * const.cs: Changed exception numbers
1483
1484 2004-03-22 Anirban Bhattacharjee <banirban@novell.com>
1485         * mb-parser.jay: Changed grammar for constant
1486
1487 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1488         * mb-tokenizer.cs : handling better linebreak, specially when delaing with literals and preprocessing directives 
1489
1490 2004-03-16 Anirban Bhattacharjee <banirban@novell.com>
1491         * mb-parser.jay: 
1492                 - changed variable declaration grammar and added support for multiple variables declartion under single type e.g. dim x, y as integer
1493                 - added few exception checks in variables
1494                 - added one exception check in property
1495         
1496 2004/03/02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1497         * sourcebeingcompiled.cs : new source/class to hold things previously contained in namespaces.cs 
1498                         because in C# they were semantically tied to nested namespaces, and in VB.NET 
1499                         they can occur only once per file.
1500         * mbas.exe.sources: added sourcebeingcompiled.cs
1501         * mb-parser.jay: reference RootContext.Sourcebeingcompiled things
1502         * namespace.cs: move pieces to sourcebeingcompiled
1503         * rootcontext.cs: use SourceBeingCompiled class
1504         * decl.cs: reference RootContext.Sourcebeingcompiled things
1505
1506 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
1507         * mb-tokenizer.cs: Support for '-' delimiter in DateTime
1508
1509 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
1510         * report.cs: Formatted warning thrown
1511
1512 2004-03-02 Anirban Bhattacharjee <banirban@novell.com>
1513
1514         * class.cs
1515         * decl.cs
1516         * modifiers.cs
1517         * mb-parser.jay
1518         Added Overloads and Shadows modifiers to Function and Sub
1519         Fixed few other modifier related problems in Function and Sub
1520
1521 2004-01-07  Nick Drochak <ndrochak@ieee.org>
1522
1523         * genericparser.cs:
1524         * mb-tokenizer.cs: 
1525         * row.cs: Eliminate warnings about unused variables.
1526
1527 2004/01/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1528         * typemanager.cs :      correcting translation of System types to language types, 
1529                         also temporarily circunventing a exception in ModuleBuilder.GetType inside LookupTypeReflection,
1530                         corrected many ` characters to ' in error messages
1531         * testmbas/WriteOK.vb : testing newly implemented IsNumeric global function
1532
1533 2004-01-04  David Sheldon <dave-mono@earth.li>
1534
1535   * expression.cs: Added matching ")" to error message for 
1536   CS0077
1537
1538 2003/12/23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1539         * driver.cs : added stubs for options "/netcf /sdkpath:path"
1540         * namespace.cs, decl.cs, rootcontext.cs : use hashtable to avoid duplicate importation of namespaces 
1541           (especially between command-line option /imports and explicit Import clauses), what manifested itself as
1542           error messages for ambiguous names that where in truth identical
1543         * statement.cs : trying to fix the 'exit' statement DoEmit, for "Exit Sub"
1544         * mb-parser.jay, mb-tokenizer.cs : initial support for type_characters (dim az$ = dim az as string)
1545
1546 2003/12/18  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1547         * class.cs : case-sensitiveness when tracking the entry-point removed
1548         * driver.cs : IsSWFApp would try to pass a null 'mainclass' to the hashtable indexer, throwing an exception
1549                 (even for correct programs because of the bug above). Now this condition is tested before
1550
1551 2003/12/06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1552         * ecore.cs : problems trying to implicit convert OMITTED arguments, solved
1553         * mb-tokenizer.cs, mb-parser.jay, typemanager.cs : support for the date primitive type and date literals
1554         * testmbas/WriteOK.vb: testing date type and date literal
1555
1556 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1557         * driver.cs : /imports option now is implemented
1558         * mb-parser.jay: support for pre-imported namespaces (the default Microsoft.VisualBasic and those from /imports)
1559         
1560 2003/11/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1561         * mb-tokenizer.cs : integer literal (Hex starts with &H not 0x), handle Octal literals (&O)
1562         *       handle unicode specialized double-quotes in string literals     
1563         *       corrected some mishandling of conversions in numeric literals
1564         *       implemented support for char literals ("z"c)
1565         * Makefile : verbose target uses verbose argument
1566         * testmbas/WriteOK.vb: many tests for literals implemented
1567         * literal.cs: correcting lack of a ShortLiteral class
1568         * mb-parser.jay: removed support for unsigned int literals, added support for short int literals
1569         
1570 2003/11/10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1571         * *.cs, mb-parser.jay: Switched all from defining/using namespace Mono.CSharp to Mono.MonoBASIC 
1572         * location.cs: SymbolDocument now returns a SymbolDocumentWriter using the right (SymLanguageType.Basic) GUID
1573         
1574 2003/10/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1575         * genericparser.cs: 
1576             Don't print exception when a file is not found to be parsed
1577                 File extensions not matched are now processed with the default parser
1578                 Better handle file/directory not found exceptions, and use Report.Error in that case
1579         * added defaultparserattribute.cs
1580         * mb-parser.jay : Mono.MonoBASIC.Parser is now the [DefaultParser]
1581         * location.cs version 1.4 recovered (Marco Ridoni had it overwritten with an older version)
1582         * mb-tokenizer.cs, rootcontext.cs, tree.cs: Location constructor needs column number now
1583
1584 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1585         * .cvsignore: WHOOPS
1586
1587 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1588         * .cvsignore: some more files to ignore
1589
1590 2003/09/17  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1591         * mb-tokenizer.cs, driver.cs: Back to Linux line-endings, SORRY
1592
1593 2003/09/16  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1594         * Makefile: corrected testing in Windows/Cygwin (from mbas.exe to ./mbas.exe), because it was getting the installed compiler instead of the compiled one
1595         * mb-tokenizer.cs: Redoing: Preprocessor directives must be case-insensitive (many .ToLower() used)
1596         * driver.cs: No more 'linkpaths' option, use 'libpath' instead
1597
1598 2003/09/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1599         * driver.cs: Corrected handling of FileNotFoundException in LoadAssembly(), according to Bernie Solomon's patch
1600
1601 2003/08/13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1602         * mb-parser.jay: ReDim statement parses many variables now (but initializers aren't allowed)
1603                                          Erase statement implemented
1604                                          Lots of garbage (never reduced rules) deleted
1605                                          Reduce/Reduce problems eliminated (where due to having opt_modifiers duplicated inside property_declaration rule)
1606         * statement.cs : class Redim is prepared to have ReDim Preserve copying code called,
1607                                          but we need to check if that code is lying in Microsoft.VisualBasic.dll
1608                                          New class Erase
1609
1610 2003-07-26  Ben Maurer  <bmaurer@users.sourceforge.net>
1611         
1612         * statement.cs: Make Math.XXX System.Math.XXX, to fix the build.
1613         
1614 2003-07-20  Peter Williams  <peter@newton.cx>
1615
1616         * Makefile: Remove the test target which conflicted with
1617         the global target. (Change confirmed with Rafael.)
1618
1619 2003-04-02  Duncan Mak  <duncan@ximian.com>
1620
1621         * mb-parser.jay: Temporarily remove the references to
1622         Class.MustOverride to fix the build.
1623
1624 2003/03/29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1625         * mb-parser.jay: corrected some module related rules
1626         * location.cs : now handles column information
1627         
1628 2003/03/11  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1629         * makefile.gnu : use $RUNTIME for all targets
1630                                          actually run the compiled program on 'test-gtk' target 
1631         * mb-tokenizer.cs : no escaping of chars allowed in VB.NET (old mcs code removed)
1632                                                 handle doubled-doublequotes (VB idiom to escape a doublequote) 
1633         
1634 2003/03/04  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1635         * mb-parser.jay: added rule for Imports with alias
1636         * mb-parser.jay: Friend (internal) modifier was missing,
1637                                          Shared modifier was expecting Static token erroneously
1638                                          Modules must accept only a static constructor rule added
1639                                          Constant declaration rule added
1640         * makefile & makefile.gnu : actually run the compiled program on test target 
1641
1642 2003/03/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1643         * mb-tokenizer.cs : new semi-keywords: Compare, Explicit, Strict, On, Off, Binary, Text
1644         * mb-parser.jay: tokens for above semi-keywords, and rules for option directives
1645         * driver.cs: integrates command line options with parser flags for option directives
1646         * makefile & makefile.gnu : added 'verbose' target that uses --verbose switch to compile 
1647           the test source and pipes it through 'less', also added a Extended Syntax source
1648
1649 2003/02/22  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1650         * class.cs : As, per vbc, there is a rootnamespace now, --main wasn't working anymore, 
1651                                  because it was expecting a fully qualified class name. 
1652                                  We now also test the name passed prepended by the rootnamespace.
1653         * class.cs : Corrected warning "The keyword new is required on `Mono.CSharp.Property.Emit'
1654                                  because it hides inherited member `PropertyBase.Emit'", by making it virtual
1655                                  in PropertyBase and override in Property.
1656         * makefile.gnu : test and test-gtk targets now depend on mbas.exe
1657                                  
1658
1659 2003/02/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1660         * mb-parser.jay : eliminated reduce/reduce conflict on duplicated rank_specifier rule
1661           by renaming the one using brackets to bracketed_rank_specifier
1662
1663 2003/02/12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1664         * added argument.cs (extracted from expression.cs) makefiles corrected
1665         * mb-parser.jay : eliminated reduce/reduce conflict on opt_argument_list rule, 
1666           by putting and if to make a argument list with just an empty argument list become an empty list
1667
1668 2003/02/03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1669         * rootcontext.cs : added RootNamespace member
1670         * mb-parser.jay : use RootContext.RootNamespace to initialize outermost namespace
1671         * driver.cs : 
1672                 - implement rootnamespace parameter, and defaults it to the output file name
1673                 - like vbc if no source file name is provided just show help
1674
1675 2003/01/22  Nick Drochak <ndrochak@gol.com>
1676         * makefile: Use csc compiler in here. makefile.gnu assumes mono/mcs
1677
1678 2003-01-13  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1679         * added cleanup method to tokenizer as needed but modifications made in jay
1680
1681 2003-01-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1682         * changed test target in makefile work
1683         * corrected authors list to include Marco
1684
1685 2002-10-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1686         * merged many sources from mcs/mcs, to resync
1687
1688 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1689         * using Mono.GetOptions preliminar support for response files, 
1690           changed the makefile target 'test' for use o response file testmbas/filelist
1691
1692 2002-10-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1693         * merged many sources from mcs/mcs, to resync
1694
1695 2002-10-05  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1696         * merged many sources from mcs/mcs, to resync
1697
1698 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1699         * merged many sources from mcs/mcs, to resync
1700
1701 2002-09-03  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1702         * integrated new version of Mono.GetOptions (reflection/attributes-based)
1703
1704 2002-08-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1705         * merged expression.cs from mcs/mcs, to resync
1706
1707 2002-08-29  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1708         * merged assign.cs, attribute.cs, class.cs, codegen.cs, const.cs, decl.cs, delegate.cs, ecore.cs, enum.cs,
1709         expression.cs, interface.cs, pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and 
1710         typemanager.cs from mcs/mcs, to resync
1711
1712 2002-08-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1713         * added "test" target to makefile
1714         * merged assign.cs, attribute.cs, cfold.cs, class.cs, codegen.cs, const.cs, constant.cs, 
1715           decl.cs, delegate.cs, ecore.cs, enum.cs, expression.cs, interface.cs, modifiers.cs, parameter.cs, 
1716           pending.cs, report.cs, rootcontext.cs, statement.cs, support.cs and typemanager.cs from mcs/mcs, to resync
1717
1718 2002-07-14  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1719         * merged assign.cs, class.cs, ecore.cs, expression.cs, statement.cs and typemanager from mcs/mcs, to resync
1720
1721 2002-07-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1722         * merged attribute.cs, ecore.cs, namespace.cs and statement.cs from mcs/mcs, to resync
1723
1724 2002-07-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1725         * merged attribute.cs, class.cs, codegen.cs, ecore.cs, expression.cs, 
1726           modifiers.cs, namespace.cs, report.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync
1727         * changed driver.cs to follow mcs lead on error/warning counting and reporting
1728
1729 2002-06-23  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1730         * merged attribute.cs, class.cs, ecore.cs, rootcontext.cs, support.cs and typemanager.cs from mcs/mcs, to resync
1731         * makefile makes csc reference a copy of Mono.GetOptions.dll (mbas.sln now compiles to mbas dir instead of mbas/bin/Debug)
1732
1733 2002-06-21  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1734         * merged attribute.cs, class.cs, interface.cs, expression.cs, ecore.cs, 
1735           modifiers.cs, rootcontext.cs, statement.cs and typemanager.cs from mcs/mcs, to resync
1736         * added pending.cs from mcs/mcs, to resync
1737
1738 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1739         * merged assign.cs, attribute.cs, enum.cs and namespace.cs from mcs/mcs, to resync
1740         * namespace.cs needed some fixing, because CSharpParser isn?t available
1741
1742 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1743         * merged delegate.cs, ecore.cs, typemanager.cs and rootcontext.cs from mcs/mcs, to resolve expression.cs blues
1744
1745 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1746         * oops merged expression.cs from mcs/mcs is breaking my make
1747         * driver.cs, assemblyinfo.cs wasn?t ready for prime time (offending lines were commented out)
1748
1749 2002-06-15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1750         * merged expression.cs from mcs/mcs
1751
1752 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1753         * corrected Module.TypeAttr property getter in module.cs
1754         
1755 2002-06-12  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1756         * merged typemanager.cs from mcs/mcs
1757
1758 2002-06-10  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1759         * merged expression.cs and interface.cs from mcs/mcs
1760
1761 2002-06-09  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1762         * merged const.cs, enum.cs, expression.cs and typemanager.cs from mcs/mcs
1763     * comments on module.cs
1764
1765 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1766         * merged class.cs, attribute.cs from mcs/mcs
1767
1768 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1769         * merged class.cs, enum.cs, expression.cs, interface.cs, rootcontext.cs and typemanager.cs from mcs/mcs
1770         * added module.cs (class Mono.MonoBASIC.Module - derived from Mono.CSharp.Class)
1771         * added System.XML and Microsoft.VisualBasic to the default config (driver.cs)
1772         
1773 2002-06-07  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1774         * merged class.cs and ecore.cs from mcs/mcs
1775
1776 2002-06-02  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1777         * copied methods MakeName and CheckDef from mcs\cs-parser.jay to GenericParser.cs 
1778           where they are inherited by mb-parser.jay/cs
1779         * put some code on the Module rule in mb-parser.jay to at least generate a class in the assembly,
1780           if I jump over the entry-point check code, while debugging
1781         
1782 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1783         * class Mono.MonoBASIC.Tokenizer now handles 
1784                 - all valid line-terminators (CR, LF, CRLF, LS and PS)
1785                 - escaped identifiers (like [Integer])
1786                 - old-fashioned comments syntax (REM Blah-Blah)
1787
1788 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1789         * modified mbas.ico to be a small version of mono?s logo (see mcs\MonoIcon.png)
1790
1791 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1792         * squashed some reduce/reduce conflicts out of mb-parser.jay
1793
1794 2002-05-31  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1795         * merged codegen.cs from mcs
1796         * altered Driver.cs to work with new codegen.cs
1797
1798 2002-05-27  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1799
1800         * merged all I could from mcs source files into mbas
1801         * added VS.NET Solution and Project Files for mbas
1802         * added icon file and a vb-sources-filled testmbas directory
1803         * started this ChangeLog