Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « mbas « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db23178216d590e46f8a77bedf20f636fa5e956a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2006-02-21 Jelmer Vernooij <jelmer@samba.org>
	* Test/tests/statements/AssignmentStatementsJ.vb: Add test that 
	demonstrates bug in incremental property assignment.

2006-01-23 Jelmer Vernooij <jelmer@samba.org>
	* Test/tests/typemembers/EventP.vb: Add tests that check for 
	more complex constructions in AddHandler / RemoveHandler.
	* Test/tests/typemembers/EventO.vb: Test for parsing a WITHEVENTS 
	variable declaration after it is being used in a 'Handles ...' clause.

2005-12-21 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
 	* ecore.cs, cfold.cs: Changed for reflecting correct Error Number/Message with
	Implict Convertions when Option Strict is On.

2005-12-07 Jelmer Vernooij <jelmer@samba.org>
 	* Makefile: allow build of only mbas, without the need to built the 
	class library

2005-11-29 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
       * test-mbas.pl: Parsing Test Files in order to find necessary
       compilerOptions and generate the correct CompileCommand.

2005-11-28 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
 	* decl.cs: Avoid to stop searching for class members after encountering
  	the first member, in order to find the inherited or overloaded members.
 
2005-11-28 Jelmer Vernooij <jelmer@samba.org>
	* Fix to Bugzilla Bug #76476: bash-specific code in 
	mbas/Test/misc/Makefile
 	
2005-11-20 Jelmer Vernooij <jelmer@samba.org>
	* genericparser.cs,decl.cs,class.cs: allow members with the same name 
 	as their enclosing type, just like vbc does

2005-11-19 Jelmer Vernooij <jelmer@samba.org>
 	* mb-parser.jay: fix error handling when array modifiers are specified
 	on both type and variable name

2005-11-18 Jelmer Vernooij <jelmer@samba.org>
 	* mb-tokenizer.cs: add fix so the tokenizer no longer parses label 
 	names at the start of continuation lines

2005-11-16 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* mb-parser.jay: Do not create a set_block with ReadOnly Properties.
	* typemanager.cs: Search for correct DefaultPropName and the class
	Type that contains the Default Property.
	* expression.cs: Send the correct Type for porperties search;
	Fix Error with uses of default properties without a Default Property
	definition.
	
2005-11-09 Renato Suga <renato.suga@gmail.com>
	* mb-parser.jay: added STOP to statement rule to allow a keyword STOP
	in an iteration_statement.

2005-11-07 Renato Suga <renato.suga@gmail.com>
	* Expression.cs: commented this line: 
	 //      SimpleName.Error_ObjectRefRequired (ec, loc, me.Name);


2005-11-05  Kornél Pál  <kornelpal@hotmail.com>

	* AssemblyInfo.cs: Use Consts.MonoVersion as AssemblyVersion.
	* mbas.exe.sources: Added Consts.cs.

2005-11-02  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
	* typemanager.cs: avoiding some Null Pointer Exceptions in GetPertinentStandardModules

2005-11-01 Aldo Monteiro do Nascimento <aldo@psl-pr.softwarelivre.org>
 	* mb-parser.jay: created a new parser rule to match a interface
 	declared inside another interface: "opt_interface_declaration"
 	* mb-parser.jay: when redeclare compiler constants no compilation
 	error is raised, and than the redeclaring works as expected.
 
2005-10-31 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
 	* ecore.cs: Fix UnboxCast Emit calling Activator.CreateInstance when
 	necessary.

2005-10-29 Renato Suga<renato@psl-pr.softwarelivre.org>
 	* codegen.cs: Added static global ArrayList ArrListVersion to keep the 
 	assembly's version numbers. reating a new Version(string str) is not 
 	working. The Init() method was modified to correctly set the version value;
 	* attribute.cs: one of its constructor was modified to pass the string 
 	version to CodeGen.ArrListVersion so that at Init () CodeGen sets the 
 	correct version.
 
2005-10-19 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* class.cs: Casting TypeContainer to Interface in order to call the
	correct overload of RootContext.RegisterOrder.

2005-10-12 Renato Suga <renato@psl-pr.softwarelivre.org>
 	* mb-parser.jay: foreach_statement now emits the correct error code for 
 	test ForEachC1.vb, which is an error test

2005-10-11 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
           
  	* block.cs, statements.cs, mb-parser.jay: Support for On Error Goto 0,
  	On Error Goto -1 and On Error Goto <Label>
  	
2005-10-07 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
           Alexandre Rocha Lima e Marcondes <alexandre@psl-pr.softwarelivre.org>       
           Rafael Teixeira <rafaelteixeirabr@hotmail.com>  
           
  	* block.cs, statements.cs, expression.cs: Fix ForEach when iterating fields
  	
2005-10-05 Aldo Monteiro <aldo@psl-pr.softwarelivre.org>
 
 	* ecore.cs : Created a public property (Id) to access externally the field
 	id in DecoratedIdentifier class
 	* assign.cs : Before get the expression for construct 'Mid' statement
 	testing if that expression is 'DecoratedIdentifier', and, if it is,
 	getting the expression assigned in its 'id' field.

2005-09-26 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
           Alexandre Rocha Lima e Marcondes <alexandre@psl-pr.softwarelivre.org>       
	* mb-parser.jay: Fix ForEach when using fields as the variable used
	to iterate through the elements.
	* expression.cs: Created new LocalVariableReference EmitAssign used in
	for each with non Static fields.
	* statement.cs: Created new attribute of VariableInfo - FieldAlias wich
	references a FieldBase indicated by the alias.
		Added a field assign treatment if the foreach variable references
	a non static field, in EmitCollectionForeach and EmitArrayForeach.
	* mb-parser.jay, block.cs, statement.cs, expression.cs: Remove Bool Static
	Attribute from VariableInfo class.

2005-09-22 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* mb-parser.jay: Throws error for Option Strict on with Propeties
	whitout an 'As' clause or a type character. Fix Interfaces errors with
	Shared modifiers.

2005-09-16  Renato Suga <renato@psl-pr.softwarelivre.org>
	* mb-parser.jay:rules goto_statement and for_statement changed in order 
	to recognize error BC30757
	* statement.cs: class added property LabelName and uncomented string 
	label_name. These changes allow one to get the LabelName when reporting 
	an error
	* block.cs: added property bool HasGotoStatement and property String 
	LabelName. The first one combined with HasLabeledStatement allows one to
	identify the aforementioned error.

2005-09-15  Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	    Alexandre Rocha Lima e Marcondes
	    <alexandre@psl-pr.softwarelivre.org>
	*  mb-parser.jay : Error statement statemet support.

2005-08-23 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs : 
		StatementSequence : Avoid Resolving multiple times
	* ecore.cs :
		Minor fix to 'Constantify' method

2005-08-22 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs : 
		Invocation's DoResolve method : Avoid resolving multiple times.
	* typemanager.cs :
		'GetPertinentStandardModules' : Case-insensitive name lookup

2005-08-19 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs :
		Preventing conversion of an 'object' to 't[]' where the latter is a 
		ParamArray parameter
	* statement.cs :
	* codegen.cs :
		Fixed handling of 'Return' and 'Exit' statements from within 
		Try/Catch blocks

2005-08-09 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* mb-parser.jay: Define as used the function's return variable,
	because of bug #75747.
	Fix Event errors with Shared modifiers.

2005-08-05 Gert Driesen <drieseng@users.sourceforge.net>

	* expression.cs: Initialize FieldBase variable. Fixes build using csc
	because of bug #75721.

2005-08-05 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs :
		'ConstructArgumentList': Converting the default value to the param type before
					 appending to the arg list

2005-08-04:2  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* statement.cs:  
		Oops, line number on Redim errors as Aldo/Renato intended
		Better logic flow when redim errors occur to avoid exceptions later
		
2005-08-04  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* statement.cs:  Refactored code/fields from Redim to RedimClause 
	so that it works for multiple arrays being redimensioned in the same statement 
	* mb-parser.jay: redim_clauses rule was losing additional items

2005-08-04  Aldo Monteiro <aldo@psl-pr.softwarelivre.org>, 
	Renato Suga <renato@psl-pr.softwarelivre.org>
	* mb-parser.jay: treatment of opt_type_spec in redim_clause
	* statement.cs: changed constructor in class RedimClause so that it gets
	an Expression. Report.Error now emits the line number too for ReDim
	errors. New attribute in RedimClause: Expression ExprAs 

2005-08-04 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* mb-parser.jay: Fix local static variables initialization
	
2005-07-29 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay, expression.cs: Fixed concat operation with compound assign statements
	* support.cs : Returning 'NullLiteral.Null', when a parameter default value is null

2005-07-22 Maverson Eduardo Schulze Rosa <maverson@gmail.com> and Alexandre
Rocha Lima e Marcondes <alexandre@psl-pr.softwarelivre.org>
	* block.cs: Local variable alias and static flag  support and
  	  MethodBlock class that knows the name of the Method that owns it
	* class.cs: Static local specialname modificator emission
	* expression.cs: Hidden static field access using the static local
	  alias
	* statement.cs: Local variable alias support and Static local flag
	* mb-parser.jay: Static local identification and related erros
	
	
2005-07-26 Ankit Jain <jankit@novell.com>

	* typemanager.cs (TypeManager): Change types of system_*_expr from Expression
	  to TypeExpr.
	  (TypeToCoreTypExpr): New.
	* ecore.cs (DecoratedIdentifier): New. For an identifier with a typecharacter.
	* mb-tokenizer.cs: Allow type characters for numbers.
	* constant.cs (IntConstant.ConvertToDecimal): New.
	  (DoubleConstant.ConvertToFloat): Return FloatConstant.
	  (DoubleConstant.ConvertToDecimal): New. 
	* mb-parser.jay (type_character): Return Type instead of TypeExpr.
	  (primary_expression): Add 'literal type_character' variant.
	  	(qualified_identifier) : Use DecoratedIdentifier in case of a typecharacter.
	  (ConvertLiteral): New. Convert literal to a different type.

2005-07-25 Ankit Jain <jankit@novell.com>

	* mb-parser.jay: RaiseEvent: Add code to check for null event.

2005-07-22 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* block.cs: Fix dead code detection
 
2005-07-22 Satya Sudha K <ksathyasudha@novell.com>
	* mb-tokenizer.cs: Fix for statements ending with ':'

2005-07-22 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay: Check for type before resolving
	
2005-07-22 Ankit Jain <jankit@novell.com>

	* mb-parser.jay: evt_handler_list: New.
	  opt_evt_handler, sub_declaration: Support multiple event handlers.

2005-07-21 Manjula GHM <mmanjula@novell.com>
	*assign.cs: Support conversions in "new" assignment statement

2005-07-21 Satya Sudha K <ksathyasudha@novell.com>
	* Support method invocation without '()'

2005-07-21 Manjula GHM <mmanjula@novell.com>
	*assign.cs: Support conversions in "new" assignment statement

2005-07-21 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay: Support type specifier for "ReDim" statements

2005-07-18 Satya Sudha K <ksathyasudha@novell.com>
	* Supported overloading of properties (has to be tested thoroughly)

2005-07-13 Maverson Eduardo Schulze Rosa <maverson@gmail.com>
	* mb-parser.jay:
	* block.cs: Support and successfully find goto target labels
	declared out of block that contains the goto statement.

2005-07-13 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*statement.cs: extract class Block into new source block.cs
	*mbas.exe.sources: added newly extracted block.cs
	*block.cs: eliminated "block.cs(252) warning CS0219: The variable 'cur' 
	is assigned but its value is never used"

2005-07-12 Manjula GHM <mmanjula@novell.com>
	* parameter.cs , ecore.cs : Changed error number and message according to .NET

2005-07-12 Manjula GHM <mmanjula@novell.com>
	* cfold.cs: Support 'Nothing' for Constants.
		 Added exception 	
		
2005-07-07 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay: To avoid Array modifiers specified on both a variable and its type

2005-07-06 Umadevi S <sumadevi@novell.com>
	* statement.cs - suppressing warnings due to unused variables in mbas compiler.

2005-07-05 Umadevi S <sumadevi@novell.com>
	* expression.cs - added support to handle DBNull

2005-06-30:5 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*ecore.cs: some tentative code preparing to support automatic definition of variables
	on first usage with Option Explicit Off commented out as it breaks on emit phase, and 
	guesses wrong what should be automatically defined

2005-06-30:4 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*statement.cs: some tentative code preparing to support automatic definition of variables
	on first usage with Option Explicit Off. Converting backticks to apostrophes on messages

2005-06-30:3 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*mb-parser.jay: small bits preparing to support automatic definition of variables
	on first usage with Option Explicit Off
	
2005-06-30:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*assign.cs: Killed exception occurring when resolving an assignment 
	to an undefined symbol (Explicit On scenario)

2005-06-30 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	*mb-parser.jay: Eliminating 'reduce/reduce conflicts' and 'rule never reduced'
	by simplifying the directive_expression rule (formerly directive_exp).

2005-06-30 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay: To support signed exponent

2005-06-30 Manjula GHM <mmanjula@novell.com>
	*mb-tokenizer.c : Support hexadecimal literals - supports binary value 
	of the integer literal - like &H8000S is "-32768" and not an overflow exception

2005-06-28 Manjula GHM <mmanjula@novell.com>
	*class.cs : Support suitable property to override

2005-06-27 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay:
	*statement.cs: Support and successfully find label definition inside child block

2005-06-23 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay: Clear the hashtable in end of block

2005-06-23 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay: To disallow reassignment of object inside 'With...End With' block

2005-06-13 Manjula GHM <mmanjula@novell.com>
	*statement.cs: To handle Goto in Try, Catch block

2005-06-10 Manjula GHM <mmanjula@novell.com>
	*assign: To Support other types of source in Mid statement

2005-06-10 Manjula GHM <mmanjula@novell.com>
	*assign: To Support Optional Max. Insert length value in Mid statement

2005-06-10 Manjula GHM <mmanjula@novell.com>
	*assign.cs: Allow New Date assignment to other types

2005-06-08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* AssemblyInfo.cs : 
		- Added informational attributes that Mono.GetOptions shows in the help screen.
		- Bumped up the version number a bit 
	
2005-06-07 Satya Sudha K <ksathyasudha@novell.com>
	* class.cs : Disallowing default properties without parameters.
	* Some cleanups in other files to get rid of warnings.

2005-06-03 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs : Allowing '()' for property invocation with no args.
	* typemanager.cs : 
		- Caching a property's arguments (as 'NoTypes') while registering a property
		- If a name resolves to a field as well as a property, treat it as a field
		- If a name resolves to a field as well as a event, giving preference to event
	* parameters.cs : Case-insensitive search/comparison of parameter/arg names

2005-05-30 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs : 'For Each' statement : Wrapping the body of the For loop inside an exception block 
			 if the enumerator implements 'IDisposable' interface

2005-05-27 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs :
	* mb-parser.jay :
		- Supporting all kinds of case clauses (like 'A To B', 'Is >= 30')
 		- Expressions of all primitive types can now be specified as 'Select' 
		  and 'Case' expressions

2005-05-27 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay : To support "Sub New()" without modifier	

2005-05-26 Manjula GHM <mmanjula@novell.com>
	* typemanager.cs : Fix Enum conversion for two level assignment and added few more cases

2005-05-26 Manjula GHM <mmanjula@novell.com>
	* statement.cs : Fix problem w.r.t 'Exit Sub' 

2005-05-24 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs : Added few more members like 'memberName' and 'type_expr' to the 'StatementSequence'
			 class. Added an appropriate constructor for the same.
	* expression.cs: Late binding for method invocations involving object arguments
			 

2005-05-23 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs : Copying back the arguments (matching 'ByRef' parameters) in the reverse 
			 order (starting with the last argument backwards) as done by vbc

2005-05-23 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs : Support named arguments in late binding

2005-05-17 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs : Removed char <-> numeric/date conversions as they are not supported in vbc

2005-05-17 Satya Sudha K <ksathyasudha@novell.com>
	* expressions.cs :
		- Disallowing named arguments for 'ParamArray' parameters
		- Creating named arguments (to replace missing arguments), in case other arguments are also named

2005-05-16 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : correcting/refactoring EntryPoint fixing as per #74955
		adjusting references changed by Gonzalo to their new containing namespace.
		small renaming refactorings to make things clearer.
	* CompilerOptions.cs : refactored out all things that now live in 
		Mono.GetOptions.Useful.CommonCompilerOptions

2005-05-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* driver.cs: fix ambiguous reference.

2005-05-16 Manjula GHM <mmanjula@novell.com>
	* literal.cs: Declare NullType
	* typemanager.cs: Invoke proper Decimal constructor
      	* ecore.cs : Support Decimal type in literalized version
        * const.cs : 
        * constant.cs :
      	* expression.cs :
		Support Decimal constant declaration  and retrieval of Decimal structure 
		members from corelib

2005-05-16 Satya Sudha K <ksathyasudha@novell.com>
	* parameter.cs : Converting the default value (for optional param) to param type.
	* ecore.cs     : Fixed string <-> char constant conversions.
	* expression.cs :
	* argument.cs   :
	* mb-parser.jay :
			Support for named arguments
		
2005-05-12:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : mcs having C# 2.0 features makes me slip some simplified delegate creation 
		code, that breaks with csc in Windows (as pointed by Atsushi)
	* CompilerOptions.cs : moved some delegate definitions outside the class for shorter name when using.

2005-05-12 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : slimmed down, most non-specific code moved to new class/source CompilerOptions.
		Also steps where individualized and put on a array of delegates for sequencial execution
		with stop-on-first-blunder behavior. It is similar to the configurable pipeline of the
		boo compiler.
	* CompilerOptions.cs: added, refactored from inside driver.cs (some code/properties will migrate
		further to Mono.GetOptions.Usefull.CommonCompilerOptions)
	* mbas.exe.sources: added CompilerOptions.cs

2005-05-11 Ankit Jain  <ankit@corewars.org>

	* expression.cs (Invocation.CheckParameterAgainstArgument): Return ConversionType.Widening
	for a NoArg argument. Fix earlier patch.

2005-05-11 Ankit Jain  <ankit@corewars.org>

	* expression.cs (Invocation.CheckParameterAgainstArgument): Return ConversionType.Narrowing
	for a NoArg argument.
	(Invocation.IsApplicable): Don't create a REF type argument if it is NoArg.
	(Invocation.ConstructArgumentList): Create argument with its DefaultValue for a NoArg.

2005-05-10 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs, expression.cs, assign.cs :
		Patch to allow latebinding expressions to be specified as ByRef arguments 
		
2005-05-10  Raja R Harinath  <rharinath@novell.com>

	* driver.cs (InitializeRootContextAndOthersFromOptions):
	Overwrite RootContext.RootNamespace only if there's a value.

2005-05-09 Satya Sudha K <ksathyasudha@novell.com>
	* parameter.cs : Support 'Optional ByRef' parameters
	* statement.cs : Using 'System.Reflection.Missing.Value' in case of missing argument for 
			 LateBinding cases
		
2005-05-07 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : Oops, correcting some find-and-replace mishaps

2005-05-06 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
        * driver.cs : Refactored to use Mono.GetOptions.Useful.CommonCompilerOptions

2005-05-05 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
        * mb-parser.jay : Correction to allow optional type caracters in some situations.
        Now 6 more tests under mbas/Test/tests/types compile and 3 more compile and run.
        Patch contributed by Brazilian MonoBASIC Team:
                Aldo Monteiro do Nascimento <aldomonteiro@gmail.com>
                Alessandro de Oliveira Binhara <binhara@psl-pr.softwarelivre.org>
                Alexandre Rocha Lima e Marcondes <alexandre.marcondes@psl-pr.softwarelivre.org>
                Ramiro Batista da Luz <ramiroluz@gmail.com>
                Renato Suga <renatos@techresult.com.br>

2005-05-05 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs
	* mb-parser.jay:
		Changed the 'For' class to :
		- Handle negative step values
		- Supporting all types (numeric/object) of loop control variables

	* expression.cs : Removed some unused methods
	* ecore.cs      : Added float/double -> decimal conversion to NarrowingConversion

2005-05-02 Manjula GHM <mmanjula@novell.com>
	* expression.cs : Support Reference Parameter - when argument and parameter are different.

2005-04-29 Satya Sudha K <ksathyasudha@novell.com>
	* argument.cs
	* statement.cs
	* expression.cs
	* assign.cs
	* mb-parser.jay:
		Support for 'LateSet', 'LateIndexGet', 'LateIndexSet'

	* ecore.cs :
		Minor fixes in conversions

2005-04-26 Manjula GHM <mmanjula@novell.com>
      	*statement.cs
		"out" is not supported as Parameter Modifier in VB.NET

2005-04-26 Manjula GHM <mmanjula@novell.com>
	*support.cs
      	*parameter.cs
      	*argument.cs
      	*expression.cs
      	*statement.cs
		"out" is not supported as Parameter Modifier in VB.NET
2005-04-21 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs :
		Fixed object to bool/float/double conversions
		Fixed numeric <--> Enum conversions 
	* statement.cs :
	* expression.cs :
	* mb-parser.jay :
		(Initial) Support for 'LateGet'

2005-04-18 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay:
		Support expressions for Directives
2005-04-19 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs :
		Fixed conversions from 'object' to double, float, decimal and long

2005-04-18 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay:
		Support Conditional Constant Directives

2005-04-13 Manjula GHM <mmanjula@novell.com>
	* expression.cs : To support  'Or' argument of AttributeTargets in AttributeUsage
2005-04-12 Satya Sudha K <ksathyasudha@novell.com>
	* statement.cs :
		Introduced a class 'StatementSequence', to translate a late-binding call to a block of statements
	* expression.cs :
		Support for late binding (Not complete yet. Some basic method invocations work as of now)
	
2005-04-06 Ritvik Mayank <mritvik@novell.com>
  	   by Sudharsan V <vsudharsan@novell.com>
	* class.cs: correction for reflecting the correct Line No. in the Error message	
2005-04-05 Ritvik Mayank <mritvik@novell.com>
  	   Patch Submitted by Sudharsan V <vsudharsan@novell.com>
	* mb-parser.jay : correction for reflecting the correct Line No. in the Error message	

2005-03-31 Manjula GHM <mmanjula@novell.com>
	*mb-tokenizer.cs:To fix make test failure
2005-03-31 Manjula GHM <mmanjula@novell.com>
	*mb-tokenizer.cs: Support declaration of decimal numbers with no digits before point like '.52' instead of '0.52'

2005-03-29 Manjula GHM <mmanjula@novell.com>
	*assign.cs: Disallow New Date assignment with types other than date and object type

2005-03-25:3 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* AssemblyInfo.cs: Small increment in the version number to publicize --codepage support

2005-03-25:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* genericparser.cs: another static Parse overload to support specifying encoding when parsing from a file.
	* driver.cs: obsoletes --tokenize, record currentEncoding for each source-file to be processed, call the new Parse overload
		Implement support for a --codepage option similar to mcs. Example: 
			mono mbas.exe --codepage:1252 WindowsANSI.vb --codepage:utf8 UTF8.vb --codepage:reset currentcharset.vb

2005-03-25:1 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* genericparser.cs: another Parse overload to support specifying encoding when parsing from a file.
	Preparing to implement support for a /codepage option similar to mcs

2005-03-24 Manjula GHM <mmanjula@novell.com>
	* mb-tokenizer.cs: To fix parser error for ExternalSource Directives

2005-03-24 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay : 
			- Support for Dictionary Member Access Expressions
			- Exponentiation operator in compound assignments
	* expression.cs : Merged 'Exponentiation' class with 'Binary' class
	* cfold.cs	: Fixed constant division (both '\' and '/')

2005-03-24 Manjula GHM <mmanjula@novell.com>
          * mb-parser.jay,mb-tokenizer.cs: Support 'End Statement' in parser and tokenizer file

2005-03-24 Manjula GHM <mmanjula@novell.com>
           Sudharsan V <vsudharsan@novell.com>
          * mb-parser.jay,mb-tokenizer.cs:
		Revamped end of block logic 

2005-03-24 Manjula GHM <mmanjula@novell.com>
        * statement.cs: Fix bug in 'Exit Function'

2005-03-23 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* AssemblyInfo.cs: Some more diligent authors
	* ecore.cs, cfold.cs, delegate.cs: remove warnings-causing code 

2005-03-22 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay
	* expression.cs :
			Fix for 'MyClass' instance expressions 

2005-03-22 Satya Sudha K <ksathyasudha@novell.com>
	   Sudharsan V <vsudharsan@novell.com>
	* mb-parser.jay : 
			Removed some conflicts in the grammar

2005-03-21 Manjula GHM <mmanjula@novell.com>
	* statement.cs: Implementation of 'End' Statement which terminates execution immediately

2005-03-18 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay :
	* mb-tokenizer.cs :
	* expression.cs :
		Supported 'Like' operator

2005-03-18 Manjula GHM <mmanjula@novell.com>
           Sudharsan V <vsudharsan@novell.com>
          * mb-parser.jay:
              Some more fixes related to displaying correct line number

2005-03-17 Manjula GHM <mmanjula@novell.com>
	*ecore.cs : rounding the double values before converting to Integer types

2005-03-17 Manjula GHM <mmanjula@novell.com>
	*ecore.cs : Support Double in case statement and do necessary conversion to Int Literal

2005-03-16 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay:
		Support 'expression TO expression' case clause for select statement

2005-03-15 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay :
	* expression.cs :
		Supported '\' (int division) operator

2005-03-11 Manjula GHM <mmanjula@novell.com>
           Sudharsan V <vsudharsan@novell.com>
          * mb-parser.jay:
              Fixes related to displaying correct line number,error message and handle End of blocks

2005-03-11 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs :
			 Support for 'Nothing' with all operators.
			 A few fixes to the 'DoNumericPromotions' method
	* ecore.cs      :
			 Fixed Boolean constant conversions
			 Supported conversion of 'nothing' to value types

2005-03-10 Manjula GHM <mmanjula@novell.com>
	*expression.cs :
		Support 'Is' for all reference types

2005-03-10 Satya Sudha K <sathyasudha@novell.com>
	* mb-parser.jay :
	* expression.cs :
			Support for 'AndAlso' and 'OrElse' operator

2005-03-09 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay :
	*expression.cs :
		Support 'Is' Expression

2005-03-08 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs      : Included Decimal -> Single/double conversions in 'WideningConversionExists' method
	* expression.cs : Fixed the behaviour of some Unary operators
			  Allowing Exponentiation on object types

2005-03-08 Manjula GHM <mmanjula@novell.com>
	*assign.cs : Bug fix - new Object creation and object assignment

2005-03-07 Satya Sudha K <ksathyasudha@novell.com>
	* mb-parser.jay : Support for shift operators
	* assign.cs     : Calling 'RuntimeHelpers.GetObjectValue' during new Object creation 
			   (to make it consistent with vbc)
	* ecore.cs      : Implicit constant conversions - rounding the float/double values before 
			  converting to Integer types
	* expression.cs : 
			 Unary class :
				* Corrected the opertor names
				* Allowing unary plus and minus on strings (by converting 
				  to double)
				* Allowing 'Not' operator on all numeric/string types 
				  (float/double/decimal/strings are converted to long)
				* In case of short/byte operations, changing the end result back to short/byte
			Exponentiation class :
				* Disallowing '^' operator on dates/char/ reference types
			Binary class :
				* Corrected operator names
				* And-ing the right operand with appropriate mask in case of shift operators
				* In case of short/byte operations, changing the end result back to short/byte
				* Re-organised the code of the 'ResolveOperator' method:
					* code organised according to expression types
					* Performing the required conversions before 'OverloadResolve'
					* Did the following fixes :
						* Fixed string/bool behaviour with logical/shift operators
						* Disallow arithmatic operators on char and dates
						* Fixed DateTime comparisons
						* Using methods of 'System.Decimal' for all Decimal operations
						* Supporting all operators with enum types
						* Allowing arithmatic/relational/shift/logical operators on type 'object'

2005-03-04 Manjula GHM <mmanjula@novell.com>
	* mb-parser.jay:
	* assign.cs:
		Support Mid Assignment Statement

2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs: correcting the handling of many options. 
	* Upgraded to latest Mono.GetOptions that supports vbc style boolean arguments /debug+ /debug-, and /help2 to hide less used options

2005-02-25 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs 
	* expression.cs: 
		Fix for default properties by Raja Harinath

2005-02-22 Manjula GHM <mmanjula@novell.com>
	*expression.cs: Handle String and date before Overloadresolve
			Added code for char + char
			Handle One of operands is value type in Relational operators 
			Handle when both are Object types

2005-02-22 Manjula GHM <mmanjula@novell.com>
	*expression.cs: Handle Bool w.r.t Logical operators 

2005-02-21 Manjula GHM <mmanjula@novell.com>
	*expression.cs: Handle  all cases of relational Operators w.r.t String types 

2005-02-21 Manjula GHM <mmanjula@novell.com>
	*mb-parser.jay: Throws error for missing END statements - by Sudharsan V

2005-02-18 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs :
		 Modified Implicit Constant conversions to :
		 * Handle Long/Float/Double Constants also
		 * Throw a compile time error if constant cannot be converted to a specified type
		   (as with vbc)
	* assign.cs :
	* expression.cs :
		Widening Enum constants to constants of underlying type before doing the conversions
	* cfold.cs :
		Added support for exponentiation operator for constants
	* enum.cs : Allowing double values to be specified as enum values


2005-02-17 Manjula GHM <mmanjula@novell.com>
	* expression.cs :
		 Support relational operator for other types

2005-02-15 Manjula GHM <mmanjula@novell.com>
	* ecore.cs :
		 Fixed conversion from char[] to String

2005-02-15 Manjula GHM <mmanjula@novell.com>
	* expression.cs: Fixed concat of string and char using '+" operator 

2005-02-14 Manjula GHM <mmanjula@novell.com>
	* ecore.cs :
		 Fixed all String to char conversions

2005-02-14 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs: 
		 - Fixed one of my previous checkin, which was breaking some test cases.
	* ecore.cs :
		 - Fixed the explicit conversion of float/double to integral types in some places.

2005-02-11 Ritvik Mayank <mritvik@novell.com>
	* class.cs
	* decl.cs
	* mb-parser.jay
	* statement.cs
		Changed for reflecting correct Error Number
						
2005-02-10 Satya Sudha K <ksathyasudha@novell.com>
	* expression.cs: 
		 - Implemented Exponentiation operator (^)
		 - Fixed the behaviour of strings in arithmatic operations (only addition 
		   was supported before)
		 - Fixed Decimal arithmatic with float/double types
		 - If operation = Division, promoting both operands to double, otherwise
		   doing numeric promotions
	* mb-parser.jay : Changes related to the Exponentiation operator

2005-02-10 Manjula GHM <mmanjula@novell.com>
	* expression.cs: Fixed concat of date and string using '+" operator 

2005-02-08  Satya Sudha K  <ksathyasudha@novell.com>
	* assign.cs: Fix for implicit conversions in Compound Assignments
	* ecore.cs :
		- Fixed the explicit conversion of float/double to integral types
		  by rounding the float/double values before performing the actual 
		  conversion
		- Using 'ConvCast' instead of 'OpcodeCast' for Narrowing conversions

2005-02-07  Ritvik Mayank <mritvik@novell.com>
	* modifiers.cs
	* class.cs
	* decl.cs
	* expression.cs
	* tree.cs
	* statement.cs
	            Changed for reflecting correct Error Number.

2005-02-07  Manjula GHM  <mmanjula@novell.com>
	* mb-parser.jay: Some more fixes related to displaying correct line number

2005-02-04  Satya Sudha K  <ksathyasudha@novell.com>
	* ecore.cs 	: Fixed the implicit conversion of float/double to integral types:
				- Rounding the float/double values before performing the actual conversion

	* expression.cs : 1) Added a class 'StringConcat' to handle string concatenations
			  2) Fixed string conversions in arithmatic operations

	* mb-parser.jay : Create a new 'StringConcat' object (instead of Binary) for concat_expression
 
2005-02-03  Manjula GHM  <mmanjula@novell.com>
	*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. 
 
2005-02-03  Manjula GHM  <mmanjula@novell.com>
	* mbas.csproj
        * mbas.sln
	Modified Project and solution files to reflect new changes

2005-01-29  Ritvik Mayank  <mritvik@novell.com>
	* ecore.cs : 
	* class.cs : 
	* cfold.cs : 
	* attribute.cs : 
	* statement.cs : 
	* mb-parser.jay : 
		Changed for reflecting correct Error Number/Message.
	
2005/01/29 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs : Added code for String conversions.

2005/01/28 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs : Added a few fixes for Boolean to Numeric Conversions

2005/01/25 Satya Sudha K <ksathyasudha@novell.com>
	* ecore.cs : Added support for Implicit numeric conversions.
		Most of the work on this patch done by Jambunathan K

2005/01/17 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : correct handling of /imports command-line option.
		Patch from Hans Kratz <kratz@omnicore.com>

2005-01-13  Ritvik Mayank  <mritvik@novell.com>
	* mb-parser.jay: Changed Error Number for Modifiers.PRIVATE to throw the right ExceptionNumber as 31089 . 	
	* mb-parser.jay: Added Modifiers.PROTECTED to throw the right Error Number as 31047 . 
  		  
2005-01-13  Ritvik Mayank  <mritvik@novell.com>	
	* ecore.cs: Changed the Error Number for setter as 30526 and getter as 30524 in Expression DoResolveLValue .
	* expression.cs: Changed the Error Number for set == null as 30526 and get == null as 30524 .

2005-01-13  Ritvik Mayank  <mritvik@novell.com>
	* statement.cs: For 'if (RedimTarget.Type.GetArrayRank() != args.Count)' changed the Error Number as 3415 .

2005-01-12 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Replaced "logical_end_of_line" with "end_of_stmt" in couple of places
			 to support delemeter ':' along with "EOL" as end of statement

2005-01-12 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: Another trivial correction 

2005-01-11 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: A trivial correction in yesterday's check-in

2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* class.cs:
	* statement.cs:
	* rootcontext.cs:
	* mb-tokenizer.cs:
	* decl.cs:
	* expression.cs:
	* attribute.cs:
	* enum.cs:
	* codegen.cs:
		Removed warnings from all the above files which were showing up during make


2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Check for the overloaded property  

2005-01-10 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: A better check provided before adding a property to TypeContainer

2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs:
	* Attribute.cs
	* mb-parser.jay
	* pending.cs:
	* typemanager.cs:
		IndexerName variable is now known as DefaultPropName in the above files

2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: A check which restrict declaring more than one property
			as default within same class

2004-12-21 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: -Mbas will emit DefaultMemberConstuctor attribute for the class
		    which is having Default Property so that it can be recognized by
		    other assemblies
		    - Removed Indexer class and some of the legacy code inherited from mcs
	* typemanager.cs: Initialized DefaultMemberAttribute constructor info	

2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	Ooops small bits on:
	* driver.cs: -q --quiet works, inclusive for the "Alpha" message
	* Test/misc/Makefile : Added dependency on newly compiled compiler for the test executable

2004-12-01 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs: it was "monostyled" and some extract method refactorings to make things clear
	now -q --quiet works, inclusive for the "Alpha" message
	* Test/misc/Makefile : Added dependency on newly compiled compiler for the test executable

2004-11-30 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* Test/misc/Makefile : Compile new RedimPreserve.vb test source
	* Added Test/misc/RedimPreserve.vb
    
2004-11-30  Alexandre Rocha Lima e Marcondes <alexandremarcondes@psl-pr.softwarelivre.org>
	* Makefile: Included Microsoft.VisualBasic.dll assembly on LOCAL_MCS_FLAGS.
	* expression.cs: Created class Preserve to implement REDIM PRESERVE syntax.
	* statement.cs: Implemented REDIM PRESERVE syntax on Redim.Resolve().

2004-11-25  Raja R Harinath  <rharinath@novell.com>
	* Makefile (SUBDIRS): Just list Test.
	(mb-parser.cs): Depend on jay/skeleton.cs.

2004-11-25  Raja R Harinath  <rharinath@novell.com>

	Update to changes in jay/skeleton.cs.
	* genericparser.cs (yacc_verbose_flag): Change to 'int'.
	* mb-parser.jay (parse): Update to changes.
	* driver.cs (verbose): Likewise.

2004-11-24  Jambunathan K  <kjambunathan@novell.com>
	* class.cs: Factored out classes - 1) GetMethod and SetMethod from
	Property and 2) AddDelegateMethod and RemoveDelegateMethod from
	Event respectively.
	
	* mb-parser.jay: Related changes.

2004-11-22  Jambunathan K  <kjambunathan@novell.com>
	* enum.cs: Factored out a new class EnumMember from the existing
	class Enum. Much of the functionality that existed in
	Enum.LookupEnumValue() is now moved in to
	EnumMember.DoDefineMember().

	One significant departure from the previous Enum implmenentation
	is that now the resolution of an EnumMember's value happens in the
	EmitContext set up for the Enum.
	
	* attribute.cs: 
	* expression.cs: Trivial changes related to the above change.

2004-11-22  Jambunathan K  <kjambunathan@novell.com>
	* Makefile: Added new make target 'consolidate-test-results'.

2004-11-22  Jambunathan K  <kjambunathan@novell.com>
	* Makefile: Run "make run-test" or "make run-test-ondotnet" to
	exercise mbas test cases.

	* testmbas: Moved the test files under this directory to Test/misc
	where it rightfully belongs.

2004-11-17  Jambunathan K  <kjambunathan@novell.com>
	* attribute.cs: Temporarily made Attribute.UnManagedType public.
	
	* class.cs: Removed the instance method
	MethodCore.LabelParameters() and moved it's functionality to the
	new instance methods Parameters.LabelParameters() and
	Parameter.DefineParameter().
	
	* parameter.cs: Introduced new instance methods
	Parameters.LabelParameters() and Parameter.DefineParameter() and
	slightly improved Parameter.ApplyAttributeBuilder().
	
2004-11-17  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: During multi-file compilation, global attributes
	were not getting parsed properly. Fixed the same.
	
2004/10/22 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : correcting global attributes handling, because it was 
	   issuing wrong warnings for trivial files like testmbas/WriteOK.vb.
	* Makefile : adding testmbas/AssemblyInfo.vb to some test compilations 

2004-11-10  Jambunathan K  <kjambunathan@novell.com>
	* attribute.cs: 1) Replaced the static method
	Attribute.GetValidPlaces() with an equivalent instance method
	Attribute.GetValidTargets() 2) Added new methods Attributes.Emit
	() and Attribute.Emit(). 3) Migrated functionality of
	ApplyAttributes to ApplyAttributeBuilder of respective classes.

	* class.cs, decl.cs, codegen.cs, const.cs, parameter.cs :
	Implemented ApplyAttributeBuilder() in the following classes:
	TypeContainer, Constructor, Field, Property, Event, DeclSpace,
	AssemblyClass, ModuleClass, Const, Method, Parameter.
	
	* codegen.cs: Implemented Emit() in the following classes:
	AssemblyClass and ModuleClass.

	The ApplyAttributeBuilder() is currently just a placeholder for
	future code that is yet to come.

2004-11-09  Jambunathan K  <kjambunathan@novell.com>
	* class.cs: Coalesced the functionality of Property and
	PropertyBase in to Property class and removed the class
	PropertyBase.


2004-11-09  Jambunathan K  <kjambunathan@novell.com>

	* attribute.cs: Injected a new virtual property
	Attributable.AttributeTargets

	* decl.cs: Made MemeberCore a derived class of
	Attributable.

	* parameter.cs: Made Parameter a derived class of
	Attributable.
	
	* class.cs: Commented out the "never used" class Indexer. I
	suspect that the class will never be required in VB.NET context
	and can possibly be stripped off after careful inspection.

	* tree.cs, module.cs, interface.cs, enum.cs, delegate.cs,
	const.cs, codegen.cs: Changes necessiated by the above changes.

2004-11-07  Jambunathan K  <kjambunathan@novell.com>
	* typemanager.cs: Removed TypeManager.builder_to_attr which was
	redundant and replaced LookupAttr with LookupClass.

	* rootcontext.cs: 
	* module.cs: Miscellaneous changes

	* mb-parser.jay: Upadted actions of the attributes grammar

	* codegen.cs: 1) Introduced new classes CommonAssemblyModulClass,
	AssemblyClass, ModuleClass 2) Introduced following methods
	CodeGen.AddGlobalAttributes, CodeGen.EmitGlobalAttributes

	* class.cs: Factored out TypeContainer.AttributeUsage

	* attribute.cs: 1) Factored out Attribute.UsageAttribute and
	Attribute.GetAttributeUsage 2) Introducing the new base class
	Attributable from which all Attributable types will be derived in
	the future 3) Added new accessors Attribute.IsAssemblyAttribute
	and Attribute.IsModuleAttribute

2004-11-06  Jambunathan K  <kjambunathan@novell.com>
	* rootcontext.cs: Removed the static field -
	RootContext:global_attribute.

2004-11-06  Jambunathan K  <kjambunathan@novell.com>
	* class.cs: 
	* attribute.cs: Removed the incomplete and (for now) unnecessary
	Mono.MonoBASIC.Operator class. Let us bother about this later.

	Stripping off these unused bits will help me in 1) refactoring the
	mbas Attributes related code 2) reusing the code from the mcs code
	base.
	
2004-11-06  Jambunathan K  <kjambunathan@novell.com>
	* class.cs: Removed the incomplete and (for now) unnecessary
	operator methods. Let us bother about this later.

2004-11-06  Jambunathan K  <kjambunathan@novell.com>
	* attribute.cs: Removed the redundant AttributeSection class and
	moved it's functionality to Attributes class. 
	* class.cs: 
	* mb-parser.jay: 
	* module.cs: Replaced references to AttributeSection with the equivalent constructs.
	* rootcontext.cs: Removed the following unused methods
	AddGlobalAttribute and AddGlobalAttributeSection.

2004-11-03 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Trivial fix for bug #68985

2004-11-04  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: Syntactic error handling for attribute grammar.

2004-10-25 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: VB .Net specific exception number

2004-10-25 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Enhanced catch grammar to accept
			'When' clause
	* statement.cs: Changed Catch and Try classes accordingly
			to emit catch statement conditionally		

2004/10/22 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : accept also -t:library as vbc does, besides /target:library

2004-10-21 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: Introduced few specific execptions
			Changed exception number

2004-10-21 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: A trivial fix to get Exit Try working 

2004-10-21  Jambunathan K  <kjambunathan@novell.com>
	* typemanager.cs (LookupType, LookupTypeDirect): Added a negative
	cache for failed type lookups (stolen from mcs' typemanager.cs).
	mbas gets a performance boost of about 20 times due to this
	change.

	* driver.cs (MainDriver): Made the warning message a little less
	scary and more inviting for first time users.

2004-10-19 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Enhanced For Each...Next statement grammar

2004-10-15 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Little improvement in For...next statement

2004-10-14 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: For statement is enabled to take
		optional declaration of the counter variable.
		E.g. now for statement can be declared as
		For i as integer = 0 to 5
		End For

2004/10/08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* Makefile: added target 'profile', changed some sources in testmbas/ to use for that purpose.

2004-10-11 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: More improvement in 'IF' statement

2004-10-11 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: If statement is enabled to parse
		following type of statement
		If <condition> Then <statement> else <statement>

2004/10/08 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* typemanager.cs: Changing StandardModule to use less memory, by doing string 
		concatenation only once. It was wasting 1 MB on the test case.

2004-10-06 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Added support for Call keyword in invocation statement

2004-10-01 Anirban Bhattacharjee <banirban@novell.com>
	* ecore.cs: Bug fixing - when event raised from other assembly

2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* statement.cs:
		Removed unused event_target field from
		AddHandler and RemoveHandler

2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: RemoveHandler function made cleaner

2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs:
	* ecore.cs:
		Fix for resolution of event expression 
		when we have a AddHandler statement 
		like 
		AddHandler Me.E, AddressOf Me.EH
		Submitted by Raja Harinath<rharinath@novell.com>

2004-09-30 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Unnecessary to and fro conversion of types
			is removed from AddHandler function

2004-09-23 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Enhanced mbas to resolve Default property or indexer

2004-09-21 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Fixed bug #66231 -
	 Now, Me.SubName, MyBase.SubName or any other qualified name 
	 is supported by AddressOf operator

2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
	* enum.cs: Made Enum member lookup case insensitive

2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
	* support.cs: Retrieving default value from another assembly in ReflectionParameters class

2004-09-15 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Support for enum in default constant value for optional parameters

2004-09-14 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Fixed exception number for type confliction in method parameter

2004-09-14 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Set default constant value for optional parameters in ParameterBuilder
	* parameter.cs: Setting optional attribute
		These two fixes makes sure that optional parameter with default value get emitted correctly

2004-08-27 Anirban Bhattacharjee <banirban@novell.com>
2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: fix CopyTo args when parsing parameters

2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
	* expression.cs: cope with ParamArray for no args
	* mb-parser.jay: dump parsing exception with --stacktrace

2004/08/19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : some changes just not to stumble in global attributes definitions in multiple-lines 
		like we have in VS.NET generated AssemblyInfo.vb files. still need to really process that definitions like mcs does

2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay:
	* mb-tokenizer.cs: first cut at implementing
	op assign

2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
	* ecore.cs:
	* enum.cs:
	* expression.cs:
	* mb-parser.jay:
	* support.cs: work on improving overload resolution

2004-08-30 Bernie Solomon <bernard@ugsolutions.com>
	* class.cs (FindMembers): filter on modflags
	for constructors & constructors are never inherited

	* decl.cs (SetupCache): constructors are not
	inherited

2004-08-27 Anirban Bhattacharjee <banirban@novell.com>
	* driver.cs: bug fixing - #63580

2004/08/19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* testmbas/WriteOk.vb : Use Mono.GetOptions from VB.NET
	* Makefile : exercise new option processing in test program [make-run-local target]

2004-08-26 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: rework parsing of ParamArray parameters

2004-08-23 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: cope with more varieties of array declarations

2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
	* statement.cs: Bug fixing - Prevent AddHandler from getting resolved second time. This is critical for ASP programs with VB.

2004-08-20 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Bug fixing - reference to the current type is fixed during BaseAccess resolution

2004/08/19  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : Some cleanup, also renamed checked option as it was removeintchecks in disguise

2004-08-18 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: MyBase support in Handles clause e.g. 
				Sub EH() Handles MyBase.E

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Trivial fix (#63213)

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs:
	* typemanager.cs:
		-Bug fixed to resolve the ReadOnly properties from base class
		-Fixed bug in resolving properties from different assembly

2004-08-14 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: fix block used as body of For Each

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Bug fixing for compiling VB script generated by ASP page - AddressOf operator in a method argument will resolve methods outside assembly

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: bug fixing to get PropertyE.vb test running - search of overridable property in base class was failing

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* typemanager.cs: Little correction in my last checked-in code - removed unnecessary return value from ExpandAllInterfaces function

2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Trivial bug fixing to get test InterfaceB.vb going

2004-08-13 Rob Tillie <Rob.Tillie@student.tul.edu>
	* ecore.cs: added runtime conversion from string to DateTime (fixes test 13329).
	
2004-08-13 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs:
	* typemanager.cs:
	* pending.cs:
		Multiple interface inheritance implemented - fix for getting InheritanceD.vb working in bteasts		

2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Implements support in Abstract methods

2004-08-12 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Support for abstract method resolution
	* pending.cs: Type of pending_implementations is set to base type
		      Changed method names IsInterfaceIndexer and IsInterfaceMethod to IsAbstractIndexer and IsAbstractMethod respectively to make them more meaningful

2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: first cut at TypeOf ... Is

2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
	* expression.cs:
	* ecore.cs: More enum changes to handle
	implicit conversions better

2004-08-11 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Interface inheritance made better

2004-08-09  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: Sanitized parser's generic error message 

2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
	* enum.cs: Enum members became enum type now, instead of underlying type

2004-08-07 Bernie Solomon <bernard@ugsolutions.com>
	* mb-parser.jay: Implement GetType(x) 
	implement Is as equals for the moment so it can be used

2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Check for empty enum declaration

2004-08-07 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: 
	* mb-parser.jay:
		Multiple Implements for a particular type member got implemented

2004-08-06  Bernie Solomon  <bernard@ugsolutions.com>

	* support.cs: Make ReflectionParameter behave
	like InternalParameter for byref args.
	* expression.cs: Cope with byref args in
	an imported DLL

2004-08-06  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: Changed expression grammar so that it now has a
	  better semblance to those defined in section 11 of VB.NET spec.
	  The 'expression' rule as it is now could possibly be buggy. So
	  another iteration is a must.

2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Small bug fix in Event grammar

2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Event still needed to have a constructor which takes value of Implements clause.
	* mb-parser.jay: Passing Implements clause value to the constructor

2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
	* decl.cs:
	* rootcontext.cs:
		Exception number made aligned to VB .net

2004-08-06 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Improvements in the implementation of Implements clause in Type members

2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser,jay: Implements clause added to Event grammar

2004-08-05 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Interface event declaration grammar rewritten

2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
	* class.cs: Introduced check for valid interface name in Implements clause. 

2004-08-04  Jambunathan K  <kjambunathan@novell.com>
	* mb-tokenizer.cs: 
	* mb-parser.jay: 

	1) Fixed the Attributes grammar starting with
	   opt_attributes. Introduced new rules starting with
	   opt_global_attributes rule - section 5.2 of VB.NET spec

	2) Introduced new Tokens that correspond to reserved but unused
	   VB.NET keywords. Added some comments as appropriate in the
	   keywords hashtable of tokenizer - section 2.3 of VB.NET spec.

	3) Corrected 'imports_term' - section 6.3.1 & 6.3.2 of VB.NET
	   spec.

	4) Introduced opt_argument_list - section 5.2 of VB.NET spec

	5) Corrected namespace_declaration - section 6.4.1 of VB.NET spec
	

2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Added support for modifiers and attributes in interface member grammar

2004-08-04 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Property types made optional

2004-08-03 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay: Interface method and property grammar got changed
			 Support for multiple implements in class 
	* interface.cs: Interface class has got changed
			All other interface types have been removed
	* class.cs: Property's Define and CheckBase method changed significantly to be in sync with Interface
	* pending.cs: few related changes 
	* attribute.cs: few related changes

2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : Some correction as pointed by Jambunathan, 
		to allow preprocessor directives after a label that may 
		leave it orphaned (without a explicit statement)
	* testmbas/WriteOK.vb : some vb code to test this case

2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : Some correction as pointed by Jambunathan, 
		to allow intermixing preprocessor directives between 
		the label and it's associated statement

2004-08-02  Jambunathan K  <kjambunathan@novell.com>
	* mb-tokenizer.cs: Oops. Also pulled out all of the old
	pre-processor code that is no more used.

2004-08-02  Jambunathan K  <kjambunathan@novell.com>
	* mb-tokenizer.cs: Fixed a bug where line nos were 
	failing to get incremented when the line continuation 
	character was appearing by itself on contiguous lines.
	
	* mb-parser.jay: Fixed the #ExternalSource actions
	so that ExternalSourceDirectivesC4.vb compiles and 
	reports source & line nos as expected.

	* location.cs: Replaced the existing unintuitive, not
	so efficient implementation of struct Location {} with 
	the one available in mcs with one minor difference: The
	number of bits reserved for a file index in the Token
	is statically fixed at 8 bits.

2004/08/01  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : Revised patch from João Viegas for the labeled_statement accepting integer literals as labels

2004-07-30  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: Oops. Reversed unintended checkin.
	* mb-tokenizer.cs: Added comment in Tokenizer() 
	* mb-parser.jay: Fixed miscellaneous bugs in handling of 
	pre-processor directives. There are two positive test 
	cases that fail currently: ExternalSourceDirectivesC4.vb
	and RegionDirectivesC1.vb

2004-07-30  Raja R Harinath  <rharinath@novell.com>

	* mb-parser.jay (IfElseStateMachine.State, IfElseStateMachine.Token): 
	Remove [Flags] attribute.

2004-07-30  Jambunathan K  <kjambunathan@novell.com>
	* mb-parser.jay: 
	* mb-tokenizer.cs: Added support for #region, #externalsource
	and conditional compilation pre-processor directives.
	Conditonal directives currently accept only boolean literals
	as conditonal expressions. 
	
	* mb-parser.jay: The original checkin hits a bug in mcs but
	compiles fine with csc. This checkin is to workaround the mcs
	bug so that cvs builds are not broken.
	
	
2004/07/26  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* mb-parser.jay : First try at SyncLock Statement #53230

2004-07-22 Anirban Bhattacharjee <banirban@novell.com>
	* argument.cs:
	* expression.cs:
		Little betterment in resolution of parameter with Addressof operator in method argument

2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Resolution of fully qualified type names - bug fixed

2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
	* assign.cs: Added new argument to Expression.ConvertExplicit function call

2004-07-20 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: Fixed resolution of overloaded functions with delegate as parameter
	* ecore.cs: Changes made to stop program getting into an endless loop on not able to cast types of source to destination object.
	* statement.cs: Added new argument to Expression.ConvertExplicit function call

2004-07-18 Anirban Bhattacharjee <banirban@novell.com>
	* argument.cs: Introduced AddressOf argument type for tracking AddressOf operator in method parameter
	* expression.cs: A parameter with AddressOf operator will get converted to Delegate before overload resolution
	* 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
		This is a fix for bug #59555

2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : Implemented support for -pkg to match mcs (bug #58673)

2004/07/15  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* driver.cs : started implementing -pkg support to match mcs (bug #58673), also corrected multiplicity for addmodule option

2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
	* driver.cs: Added support for AddModule compiler option
	* 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.

2004-07-13 Anirban Bhattacharjee <banirban@novell.com>
	* driver.cs: Compilation to module is supported now

2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
	* mb-parser.jay:
	* class.cs:
		Default modifier for constructor is set to Public

2004-07-09 Anirban Bhattacharjee <banirban@novell.com>
	* 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"

2004-07-07 Anirban Bhattacharjee <banirban@novell.com>
	* expression.cs: bug fixed - 60399

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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