~ubuntu-branches/ubuntu/lucid/mtasc/lucid

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
2007-04-13 17:58  ncannasse

	* mtasc/std/TextSnapshot.as: added missing method

2007-03-05 22:09  ncannasse

	* extc/extc_stubs.c: limits.h for linux + osx

2007-03-05 21:55  ncannasse

	* extc/extc_stubs.c: added limits.h on OSX

2007-02-27 00:00  ncannasse

	* extc/: extc.ml, extc.mli, extc_stubs.c: added get_full_path

2007-02-16 01:41  ncannasse

	* extc/: Makefile, zlib/README.txt, zlib/zconf.h, zlib/zlib.h,
	  zlib/zlib.lib: added zlib

2007-02-05 03:34  ncannasse

	* mtasc/std/System/capabilities.as: fixed

2007-02-05 00:57  ncannasse

	* mtasc/doc/CHANGES.txt: v1.13

2007-02-05 00:57  ncannasse

	* mtasc/: std/Date.as, std/ExtendedKey.as, std/SharedObject.as,
	  std/Video.as, std/System/capabilities.as, std8/Video.as: Flash
	  Lite 2.x

2007-02-05 00:56  ncannasse

	* mtasc/typer.ml: minor fixes

2007-02-05 00:56  ncannasse

	* mtasc/parser.ml: changed % priority

2007-02-05 00:55  ncannasse

	* mtasc/main.ml: 1.13 always remove "add" from keywords

2007-02-05 00:55  ncannasse

	* mtasc/genSwf.ml: trim exclude lines don't allow more than 250
	  registers

2007-01-28 03:12  ncannasse

	* extc/extc_stubs.c: minor

2007-01-09 02:31  ncannasse

	* extc/extc_stubs.c: fixed signedness warnings

2006-12-21 04:27  ncannasse

	* swflib/: swf.ml, swfParser.ml: fix lines.

2006-12-21 03:50  ncannasse

	* swflib/: swf.ml, swfParser.ml: correct support for line style
	  version 4.

2006-10-01 23:09  ncannasse

	* mtasc/genSwf.ml: FSCommand2 fix ?

2006-10-01 23:09  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2006-08-24 02:00  ncannasse

	* swflib/swfParser.ml: write id infos.

2006-08-24 02:00  ncannasse

	* swflib/as3parse.ml: no id in write

2006-08-24 01:42  ncannasse

	* swflib/: swf.ml, swfParser.ml: added f9scene

2006-08-24 01:05  ncannasse

	* swflib/install.bat: clean ending

2006-08-24 01:04  ncannasse

	* swflib/install.bat: clean first

2006-08-24 01:03  ncannasse

	* swflib/: swf.ml, swfParser.ml: TSwf9Name -> TF9Classes

2006-08-14 20:51  ncannasse

	* swflib/: swf.ml, swfParser.ml: sandbox

2006-08-14 18:27  ncannasse

	* swflib/: as3.mli, as3parse.ml: mt3_new_block

2006-08-14 18:05  ncannasse

	* swflib/: as3.mli, as3code.ml: getscope0

2006-08-12 00:51  ncannasse

	* mtasc/std/NetStream.as: +onPlayStatus

2006-08-11 23:15  ncannasse

	* swflib/as3code.ml: fix

2006-08-11 22:36  ncannasse

	* swflib/as3code.ml: assume ints everywhere

2006-08-10 22:35  ncannasse

	* swflib/: as3.mli, as3code.ml: new opcode, length fix for debug
	  infos.

2006-08-10 02:15  ncannasse

	* swflib/as3.mli: minor

2006-08-09 21:04  ncannasse

	* swflib/: as3.mli, as3code.ml: ops renaming function has index_nz

2006-08-09 18:54  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: more strict-typed
	  bytecode.

2006-08-09 01:54  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: differenciated
	  getscope0 from getscope 0 (for size checking)

2006-08-08 23:27  ncannasse

	* swflib/: as3.mli, as3code.ml: block get/set => slots

2006-08-08 22:25  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: scopes !

2006-08-08 18:44  ncannasse

	* swflib/: as3.mli, as3parse.ml: stack size

2006-08-08 18:44  ncannasse

	* swflib/install.bat: copy as3code

2006-08-07 23:41  ncannasse

	* swflib/swflib.vcproj: files

2006-08-07 21:00  ncannasse

	* swflib/: as3.mli, as3parse.ml: no original data

2006-08-07 19:11  ncannasse

	* swflib/: swf.ml, swfParser.ml: fixed swf9name

2006-08-05 08:59  ncannasse

	* mtasc/mtasc.vcproj: upd

2006-08-05 08:11  ncannasse

	* swflib/install.bat: install

2006-08-05 03:06  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: completed opcodes.

2006-08-04 20:21  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: local functions
	  support

2006-08-04 18:23  ncannasse

	* swflib/: as3.mli, as3code.ml: fixed jumps semantic

2006-08-04 04:27  ncannasse

	* swflib/: as3.mli, as3parse.ml: method debug name is optional

2006-08-04 03:18  ncannasse

	* swflib/as3code.ml: marked not-debug opcodes.

2006-08-04 02:28  ncannasse

	* swflib/: as3.mli, as3code.ml, as3parse.ml: more work on opcodes.

2006-08-03 02:00  ncannasse

	* swflib/: as3.mli, as3parse.ml, as3code.ml, swfParser.ml: added
	  basic opcodes.

2006-08-03 02:00  ncannasse

	* mtasc/doc/install.ml: updated

2006-07-22 02:25  ncannasse

	* swflib/: swf.ml, swfParser.ml: added AS3 support

2006-07-13 21:39  ncannasse

	* swflib/: as3.mli, as3parse.ml: removed as3_id

2006-07-13 20:45  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2006-07-13 20:32  ncannasse

	* swflib/: swf.ml, swfParser.ml: dummy as3 support.  allowed button
	  filters.

2006-06-19 00:59  ncannasse

	* swflib/: as3.mli, as3parse.ml: added functions base

2006-06-18 23:39  ncannasse

	* swflib/: as3.mli, as3parse.ml: inits were fields !

2006-06-18 22:55  ncannasse

	* swflib/: as3.mli, as3parse.ml: getter/setter metadatas plain asc
	  output

2006-06-18 10:12  ncannasse

	* swflib/: as3.mli, as3parse.ml: completed method_type separated
	  values bug fixes.

2006-06-18 07:10  ncannasse

	* swflib/as3parse.ml: remove log

2006-06-18 07:08  ncannasse

	* swflib/: as3.mli, as3parse.ml: added namespace value.

2006-06-18 06:36  ncannasse

	* swflib/: as3.mli, as3parse.ml: added override and inits.

2006-06-18 05:38  ncannasse

	* swflib/: as3.mli, as3parse.ml: opt super, const, fix class-object
	  ref.	more dump

2006-06-18 05:03  ncannasse

	* swflib/: as3.mli, as3parse.ml: fixed methods, super added values

2006-06-18 03:27  ncannasse

	* swflib/: as3.mli, as3parse.ml: base structure parse/write/dump
	  ok.  need more tests to check each index.

2006-06-10 04:02  ncannasse

	* swflib/: as3.mli, as3parse.ml: base

2006-05-18 07:19  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2006-05-18 07:18  ncannasse

	* mtasc/typer.ml: fixed multivars declarations

2006-05-17 20:45  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2006-05-17 20:40  ncannasse

	* mtasc/genSwf.ml: fixed

2006-05-12 20:33  ncannasse

	* mtasc/std/NetStream.as: added onCuePoint.

2006-05-06 18:46  ncannasse

	* mtasc/std8/System/security.as: added

2006-03-19 23:46  ncannasse

	* mtasc/doc/: Makefile, mtasc.1: added

2006-03-19 22:51  ncannasse

	* mtasc/doc/HelloWorld.as: [no log message]

2006-03-16 09:18  ncannasse

	* mtasc/doc/install.ml: mt extlib mirror.

2006-03-15 00:25  ncannasse

	* mtasc/std/Array.as: api fix

2006-02-24 17:10  ncannasse

	* mtasc/doc/Future.txt: added

2006-02-20 14:31  ncannasse

	* swflib/swfParser.ml: fixed shape5

2006-02-19 20:15  ncannasse

	* mtasc/genSwf.ml: minor fix

2006-02-19 16:25  ncannasse

	* mtasc/typer.ml: have -> has

2006-02-11 00:45  ncannasse

	* swflib/: swf.ml, swfParser.ml: added gradient flags (new in
	  Flash8).

2006-02-09 23:12  ncannasse

	* mtasc/doc/CHANGES.txt: update

2006-02-09 23:12  ncannasse

	* mtasc/std8/Video.as: added

2006-02-09 23:11  ncannasse

	* mtasc/std/NetStream.as: dynamic

2006-02-08 01:39  ncannasse

	* swflib/: swf.ml, swfParser.ml: minimal TShape5 support.

2006-02-02 00:44  ncannasse

	* mtasc/doc/install.ml: minor.

2006-02-01 05:03  ncannasse

	* mtasc/doc/CHANGES.txt: update

2006-02-01 05:02  ncannasse

	* mtasc/: genSwf.ml, std/TopLevel.as: added FSCommand2 support.

2006-02-01 05:02  ncannasse

	* swflib/: actionScript.ml, swf.ml: added FSCommand2 opcode
	  (FlashLite)

2006-02-01 02:16  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.12

2006-01-31 04:25  ncannasse

	* mtasc/genSwf.ml: use faster swf parsing.

2006-01-31 04:14  ncannasse

	* swflib/: swf.ml, swfParser.ml: handled jpeg tables.

2006-01-27 22:16  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: allowed access to private
	  variables inside local defined functions

2006-01-27 21:59  ncannasse

	* mtasc/std/Object.as: fixed registerClass.

2006-01-27 21:52  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2006-01-27 21:52  ncannasse

	* mtasc/typer.ml: classes statics are also dynamic.

2006-01-27 21:51  ncannasse

	* mtasc/genSwf.ml: don't allow -keep + -header.

2006-01-24 04:13  ncannasse

	* swflib/: swf.ml, swfParser.ml: added partial TextInfo support
	  (new in flash8) added support for Radial Gradients with
	  displacement (new shape fill style in flash8).

2006-01-01 04:10  ncannasse

	* mtasc/std8/TextFormat.as: added missing field

2005-12-20 22:36  ncannasse

	* mtasc/std/: Number.as, String.as: added valueOf.

2005-12-07 19:36  ncannasse

	* swflib/: swf.ml, swfParser.ml: use big_rect for text (1 case
	  found where needed 31bits bounds)

2005-12-01 19:59  ncannasse

	* mtasc/typer.ml: fixed warn_imports flag usage.

2005-11-30 03:19  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-11-30 03:18  ncannasse

	* mtasc/typer.ml: fixed resolve path for typed Arrays.	allowed new
	  and literal Array init for typed Arrays.

2005-11-29 21:55  ncannasse

	* mtasc/typer.ml: enable -infer + -strict

2005-11-29 21:36  ncannasse

	* mtasc/doc/Readme.txt: updated

2005-11-29 21:28  ncannasse

	* mtasc/main.ml: 1.11

2005-11-29 21:28  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-11-29 21:28  ncannasse

	* mtasc/typer.ml: added error on same field field (both static and
	  member) fixed bug with with.

2005-11-29 21:20  ncannasse

	* mtasc/genSwf.ml: fixed bug : package name used as local.

2005-11-29 03:26  ncannasse

	* mtasc/genSwf.ml: fixed duplicate main calls when registerClass
	  calls found

2005-11-26 09:54  ncannasse

	* mtasc/: class.ml, genSwf.ml, typer.ml: fixed Y warnings.

2005-11-26 09:48  ncannasse

	* swflib/swfParser.ml: fixed Y warnings.

2005-11-25 20:14  ncannasse

	* swflib/swfPic.ml: allowed dots in file path.

2005-11-23 03:35  ncannasse

	* swflib/: swf.ml, swfParser.ml, swfPic.ml: added TPlaceObject3 /
	  F8 filters support.

2005-11-23 01:25  ncannasse

	* swflib/: swf.ml, swfParser.ml, swfPic.ml: added Shape4 support.

2005-11-03 11:13  ncannasse

	* mtasc/doc/CHANGES.txt: added some forgoten 1.10 changes

2005-10-29 03:54  ncannasse

	* mtasc/std8/TextFormat.as: added

2005-10-04 15:38  ncannasse

	* mtasc/std8/flash/geom/ColorTransform.as: added greenMultiplier.

2005-10-04 15:38  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-09-30 18:28  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-09-30 18:28  ncannasse

	* mtasc/genSwf.ml: catched errors in swf parsing.

2005-09-21 05:31  ncannasse

	* mtasc/: main.ml, typer.ml, doc/CHANGES.txt: warning imports
	  disabled by default.

2005-09-19 23:29  ncannasse

	* mtasc/: std/MovieClip.as, std8/MovieClip.as, std8/System/IME.as,
	  std8/flash/display/BitmapData.as,
	  std8/flash/filters/BevelFilter.as,
	  std8/flash/filters/BlurFilter.as,
	  std8/flash/filters/ColorMatrixFilter.as,
	  std8/flash/filters/ConvolutionFilter.as,
	  std8/flash/filters/DisplacementMapFilter.as,
	  std8/flash/filters/DropShadowFilter.as,
	  std8/flash/filters/GlowFilter.as,
	  std8/flash/filters/GradientBevelFilter.as,
	  std8/flash/filters/GradientGlowFilter.as: some fixes

2005-09-19 22:09  ncannasse

	* mtasc/std/ArrayPoly.as: fixed return types (for MMC compatibility
	  which returns Object).

2005-09-18 20:04  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: no casts when compiling for
	  flash6

2005-09-18 01:29  ncannasse

	* mtasc/typer.ml: minor fix.

2005-09-18 01:22  ncannasse

	* mtasc/: parser.ml, typer.ml, doc/CHANGES.txt, std/ArrayParam.as,
	  std/ArrayPoly.as: added typed arrays.

2005-09-15 19:34  ncannasse

	* swflib/: swf.ml, swfParser.ml: added some Flash8 tags.

2005-09-14 23:41  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.10b

2005-09-14 23:36  ncannasse

	* mtasc/genSwf.ml: fixed switch bug.

2005-09-14 01:34  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.10

2005-09-14 01:33  ncannasse

	* mtasc/: doc/CHANGES.txt, std/Button.as, std/Key.as,
	  std/MovieClip.as, std/TextField.as, std/XMLNode.as,
	  std8/Button.as, std8/Key.as, std8/MovieClip.as,
	  std8/TextField.as, std8/XMLNode.as: flash8 changes.

2005-09-14 01:29  ncannasse

	* mtasc/main.ml: flash8 hacks.

2005-09-14 01:27  ncannasse

	* mtasc/std8/flash/: display/BitmapData.as,
	  filters/DisplacementMapFilter.as: fixes

2005-09-14 01:14  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed stack problem with
	  "for"

2005-09-14 01:08  ncannasse

	* mtasc/: std/Button.as, std/Key.as, std/MovieClip.as,
	  std/XMLNode.as, std8/flash/display/BitmapData.as,
	  std8/flash/external/ExternalInterface.as,
	  std8/flash/filters/BevelFilter.as,
	  std8/flash/filters/BlurFilter.as,
	  std8/flash/filters/ColorMatrixFilter.as,
	  std8/flash/filters/ConvolutionFilter.as,
	  std8/flash/filters/DisplacementMapFilter.as,
	  std8/flash/filters/DropShadowFilter.as,
	  std8/flash/filters/GlowFilter.as,
	  std8/flash/filters/GradientBevelFilter.as,
	  std8/flash/filters/GradientGlowFilter.as,
	  std8/flash/geom/Matrix.as, std8/flash/geom/Point.as,
	  std8/flash/geom/Rectangle.as, std8/flash/geom/Transform.as,
	  std8/flash/net/FileReference.as,
	  std8/flash/net/FileReferenceList.as,
	  std8/flash/text/TextRenderer.as: flash8 update.

2005-09-12 21:38  ncannasse

	* mtasc/std/XMLNode.as: added missing functions.

2005-09-12 17:49  ncannasse

	* mtasc/std/MovieClip.as: fixed f8.

2005-09-09 19:02  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-09-09 19:02  ncannasse

	* mtasc/typer.ml: fixed typing of ?:

2005-09-09 02:59  ncannasse

	* mtasc/: expr.ml, lexer.mll, parser.ml: removed get / set
	  keywords.

2005-09-09 01:25  ncannasse

	* mtasc/genSwf.ml: fixed default cases in switch.

2005-09-05 23:20  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-09-05 23:19  ncannasse

	* mtasc/: expr.ml, genSwf.ml, parser.ml, typer.ml: changed switch
	  implementation.

2005-09-05 23:08  ncannasse

	* swflib/: swf.ml, swfParser.ml: added flag for FrameLabel

2005-09-05 22:49  ncannasse

	* mtasc/genSwf.ml: fixed break with several stacked for..in

2005-09-05 22:39  ncannasse

	* mtasc/genSwf.ml: fixed stack corruption in new var(expr).

2005-09-05 22:15  ncannasse

	* mtasc/genSwf.ml: changed -main : now in DoAction and not
	  InitAction.

2005-09-05 21:34  ncannasse

	* mtasc/genSwf.ml: fixed problem in class replace when not -keep
	  and -mx.

2005-08-22 18:14  ncannasse

	* mtasc/genSwf.ml: fixed bug with trace escape sequences.

2005-08-20 02:00  ncannasse

	* mtasc/std8/flash/geom/Point.as: comment "add".

2005-08-20 02:00  ncannasse

	* mtasc/std/TopLevel.as: fixed delete and getVersion.

2005-08-20 01:59  ncannasse

	* mtasc/typer.ml: minor additional checks.

2005-08-20 01:59  ncannasse

	* mtasc/parser.ml: more syntax checks.

2005-08-20 01:58  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-08-20 01:58  ncannasse

	* mtasc/genSwf.ml: added getVersion.

2005-08-20 01:27  ncannasse

	* mtasc/genSwf.ml: fixed utf8 and octal escapes sequences.

2005-08-20 00:41  ncannasse

	* mtasc/parser.ml: fixed && and || precedence.

2005-08-20 00:17  ncannasse

	* mtasc/genSwf.ml: fixed escape sequences in strings.

2005-08-19 23:40  ncannasse

	* mtasc/: genSwf.ml, std/TopLevel.as: change in TRACE.

2005-08-19 23:40  ncannasse

	* mtasc/parser.ml: as keywords.  fixed parsing lists.

2005-08-19 23:39  ncannasse

	* mtasc/: expr.ml, lexer.mll, typer.ml: as keywords.

2005-08-19 23:17  ncannasse

	* mtasc/genSwf.ml: added exclude wildcards.

2005-08-03 08:58  ncannasse

	* mtasc/typer.ml: added -infer parameter.  fixed bug with += in
	  with properties.

2005-08-03 08:57  ncannasse

	* mtasc/main.ml: added -infer parameter.

2005-07-29 16:40  ncannasse

	* mtasc/std8/flash/external/ExternalInterface.as: changed XmlNode
	  to XMLNode.

2005-07-22 18:24  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: fixed small problem with class
	  case and import wildcards

2005-07-18 19:25  ncannasse

	* mtasc/: std/Button.as, std/Key.as, std/MovieClip.as,
	  std8/flash/display/BitmapData.as,
	  std8/flash/external/ExternalInterface.as,
	  std8/flash/geom/Matrix.as, std8/flash/geom/Transform.as,
	  std8/flash/net/FileReference.as,
	  std8/flash/net/FileReferenceList.as: new flash8 features.

2005-07-15 15:51  ncannasse

	* mtasc/std/MovieClip.as: added cacheAsBitmap.

2005-07-15 03:49  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-07-15 03:46  ncannasse

	* mtasc/genSwf.ml: fixed clips id generation.

2005-07-14 23:36  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: removed -separe, added -group

2005-07-14 22:57  ncannasse

	* mtasc/std8/flash/: display/BitmapData.as,
	  filters/BitmapFilter.as, filters/DisplacementMapFilter.as,
	  text/TextRenderer.as: fixed sub classes.

2005-07-14 22:06  ncannasse

	* mtasc/doc/CHANGES.txt: updated.

2005-07-14 22:05  ncannasse

	* mtasc/main.ml: 1.09

2005-07-14 21:57  ncannasse

	* mtasc/typer.ml: fixed interfaces checking (allow variance).

2005-07-14 21:29  ncannasse

	* mtasc/: std/MovieClip.as, std/TextField.as,
	  std8/flash/display/BitmapData.as,
	  std8/flash/external/ExternalInterface.as,
	  std8/flash/filters/BevelFilter.as,
	  std8/flash/filters/BitmapFilter.as,
	  std8/flash/filters/BlurFilter.as,
	  std8/flash/filters/ColorMatrixFilter.as,
	  std8/flash/filters/ConvolutionFilter.as,
	  std8/flash/filters/DisplacementMapFilter.as,
	  std8/flash/filters/DropShadowFilter.as,
	  std8/flash/filters/GlowFilter.as,
	  std8/flash/filters/GradientBevelFilter.as,
	  std8/flash/filters/GradientGlowFilter.as,
	  std8/flash/geom/ColorTransform.as, std8/flash/geom/Matrix.as,
	  std8/flash/geom/Point.as, std8/flash/geom/Rectangle.as,
	  std8/flash/geom/Transform.as, std8/flash/net/FileReference.as,
	  std8/flash/net/FileReferenceList.as,
	  std8/flash/text/TextRenderer.as: flash8.

2005-07-14 21:28  ncannasse

	* mtasc/genSwf.ml: removed -flash6 added -version X

2005-07-13 18:43  ncannasse

	* mtasc/doc/CHANGES.txt: added

2005-07-13 18:21  ncannasse

	* mtasc/genSwf.ml: fixed problem when autoregisterclass with
	  classname = linkagename.  fixed ordering problems.

2005-07-07 01:47  ncannasse

	* mtasc/genSwf.ml: fixed "delete" on register.

2005-07-04 20:50  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: changed -main and algorithm
	  for updating SWF

2005-07-04 19:56  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: added check for file name case
	  on Win32

2005-07-04 18:43  ncannasse

	* mtasc/genSwf.ml: -keep with -separate replace compiled packages.

2005-07-04 18:24  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: more strict checks of
	  interface fields

2005-06-27 18:16  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed "delete".

2005-06-24 18:00  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed problems in escape
	  sequences

2005-06-20 23:33  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.08

2005-06-20 23:22  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: fixed bug in check for
	  implemented interfaces

2005-06-13 19:31  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-06-13 19:30  ncannasse

	* mtasc/std/: Accessibility.as, Array.as, Boolean.as, Button.as,
	  Color.as, ContextMenu.as, ContextMenuItem.as, Function.as,
	  Key.as, LoadVars.as, LocalConnection.as, Mouse.as, MovieClip.as,
	  MovieClipLoader.as, NetConnection.as, NetStream.as, Object.as,
	  Selection.as, Sound.as, Stage.as, System.as, TextField.as,
	  TextSnapshot.as, TopLevel.as, XMLSocket.as: fixed headers (patch
	  from Sascha Wolter)

2005-06-13 17:19  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: removed mtasc trace message
	  added -out

2005-06-07 00:42  ncannasse

	* mtasc/std/System/security.as: added loadPolicyFile

2005-06-06 18:36  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-06-06 18:36  ncannasse

	* mtasc/genSwf.ml: fixed parsing with instanceof

2005-06-06 18:36  ncannasse

	* mtasc/parser.ml: fixed try with no catchs.

2005-06-03 01:48  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-06-03 01:48  ncannasse

	* mtasc/genSwf.ml: renamed and hide variable defined by main.

2005-06-03 01:41  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-06-03 01:40  ncannasse

	* mtasc/genSwf.ml: fixed getUrl2 stack.

2005-05-31 22:07  ncannasse

	* mtasc/std/ContextMenu.as: added missing.

2005-05-30 20:28  ncannasse

	* swflib/swf.ml: mutable header

2005-05-28 19:00  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.07

2005-05-28 18:55  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-05-28 18:55  ncannasse

	* mtasc/parser.ml: fixed for(;cond;incr) parsing error fixed (unop)
	  expr ? parsing error

2005-05-28 18:55  ncannasse

	* mtasc/main.ml: added "/" in classpath.

2005-05-28 18:09  ncannasse

	* mtasc/genSwf.ml: fixed -main repetition on swf update.

2005-05-26 15:40  ncannasse

	* mtasc/std/TopLevel.as: fixed type of "print".

2005-05-26 15:39  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: added deprecated keywords
	  usage error.

2005-05-26 12:28  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt, std/TopLevel.as: added
	  "print".

2005-05-24 12:48  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-05-24 12:43  ncannasse

	* mtasc/std/SharedObject.as: getRemote argument to Object.

2005-05-24 12:42  ncannasse

	* mtasc/typer.ml: added 'con' error message.

2005-05-23 10:56  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-05-23 10:56  ncannasse

	* mtasc/genSwf.ml: fixed -keep + -main

2005-05-20 21:02  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.06

2005-05-19 20:53  ncannasse

	* swflib/swfParser.ml: use IO bits.

2005-05-19 12:40  ncannasse

	* swflib/: png.ml, png.mli: added make and write, changed API.

2005-05-19 12:39  ncannasse

	* swflib/swfPic.ml: fixed png changes

2005-05-19 10:00  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed Malformed_expression
	  when using >32 bits integers

2005-05-19 09:45  ncannasse

	* mtasc/std/Object.as: added valueOf

2005-05-17 14:30  ncannasse

	* swflib/: png.ml, png.mli, swfPic.ml: fixed premult alpha
	  problems.

2005-05-16 17:21  ncannasse

	* swflib/: png.ml, png.mli, swfPic.ml: added filter options.

2005-05-16 16:57  ncannasse

	* swflib/: swflib.dsp, swflib.dsw: removed.

2005-05-16 16:57  ncannasse

	* swflib/: install.bat, swflib.vcproj: added swfPic and Png

2005-05-16 16:57  ncannasse

	* swflib/: png.ml, png.mli, swfPic.ml: added

2005-05-13 11:44  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: main now takes "this" as
	  parameter and is delayed (onEnterFrame)

2005-05-12 22:14  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed bug with auto register
	  class

2005-05-07 19:01  ncannasse

	* mtasc/genSwf.ml: fixed 32K limit calculation (2)

2005-05-07 17:49  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed 32K limit calculation

2005-05-07 17:40  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed IO.No_more_input
	  message

2005-05-01 12:30  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-05-01 12:26  ncannasse

	* mtasc/typer.ml: remove "return" in contructors restriction
	  (allowed by MMC) import warnings disabled for mx classes when -mx

2005-05-01 12:26  ncannasse

	* mtasc/parser.ml: fixed missing "," between function call
	  parameters

2005-04-30 14:23  ncannasse

	* mtasc/main.ml: 1.05

2005-04-30 14:23  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-04-30 14:21  ncannasse

	* mtasc/typer.ml: forbid contructor returns and return type
	  (modified headers)

2005-04-30 14:20  ncannasse

	* mtasc/parser.ml: fixed operators priority for | ^ & against >>
	  and % against * /

2005-04-30 14:20  ncannasse

	* mtasc/class.ml: fixed calls to super getter/setter problem

2005-04-30 14:20  ncannasse

	* mtasc/genSwf.ml: fixed class ordering problem with -keep fixed
	  calls to super getter/setter problem

2005-04-30 13:13  ncannasse

	* mtasc/std/: Date.as, Number.as, SharedObject.as, String.as,
	  TextFormat.as, XML.as, XMLNode.as: removed "Void" from
	  constructors.

2005-04-22 01:03  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: register only one time the
	  package.  errors on 32K bytecode size limit reached.

2005-04-22 00:21  ncannasse

	* mtasc/: main.ml, parser.ml, typer.ml, doc/CHANGES.txt: warning
	  when import not used (no longer add class) fixed error message
	  when class not found

2005-04-21 15:33  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: error when multiple extends,
	  interface cannot extends class

2005-04-21 15:31  ncannasse

	* mtasc/parser.ml: fixed left-assoc of binop numerics

2005-04-18 11:51  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed operator priority

2005-04-18 11:44  ncannasse

	* mtasc/typer.ml: fixed type required to String for for...in
	  variable

2005-04-15 12:24  ncannasse

	* mtasc/: expr.ml, genSwf.ml, parser.ml, typer.ml, doc/CHANGES.txt:
	  fixed compiler crash in "try" fixed boolean operators typing :
	  returns most common type

2005-04-14 13:33  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.04

2005-04-14 13:23  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt, std/TopLevel.as: added
	  -flash6 , -trace and bgcolor in header.

2005-04-09 13:44  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: fixed bug when catching
	  "imported" exception class changed boolean operators typing.

2005-04-07 11:32  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed typing error with
	  single "var" in a block fixed parser error with a?b:c and big
	  left-expression

2005-04-01 20:30  ncannasse

	* mtasc/parser.ml: fixed for parsing bug.

2005-03-30 10:44  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: import fixes

2005-03-29 19:11  ncannasse

	* mtasc/: expr.ml, parser.ml, doc/CHANGES.txt: "for" optional first
	  parameter and expression fixed while( o )++ i;

2005-03-29 18:16  ncannasse

	* mtasc/.cvsignore: ignore "test"directory

2005-03-27 04:25  ncannasse

	* mtasc/genSwf.ml: swf warnings off

2005-03-27 04:25  ncannasse

	* swflib/: swf.ml, swfParser.ml: warnings.

2005-03-26 02:09  ncannasse

	* extc/extc_stubs.c: fixed bsd error.

2005-03-24 21:44  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt, doc/Readme.txt: 1.03

2005-03-24 21:30  ncannasse

	* mtasc/: genSwf.ml, std/TopLevel.as, doc/CHANGES.txt: fixed trace

2005-03-18 21:04  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed bitshift operator
	  priority

2005-03-18 02:19  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed 820 size limit for
	  -header

2005-03-17 19:53  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: relaxed array access typing

2005-03-17 19:15  ncannasse

	* mtasc/std/TextField.as: autoSize is now object

2005-03-17 19:11  ncannasse

	* mtasc/std/SharedObject.as: added clear

2005-03-17 03:56  ncannasse

	* mtasc/: doc/CHANGES.txt, expr.ml, main.ml, typer.ml: added check
	  function for values without side effects

2005-03-17 03:39  ncannasse

	* mtasc/std/Object.as: added __proto__ and constructor.

2005-03-17 03:38  ncannasse

	* mtasc/std/System/: capabilities.as, security.as: added

2005-03-17 03:32  ncannasse

	* mtasc/genSwf.ml: mtasc classes after mx components.

2005-03-15 03:32  ncannasse

	* mtasc/std/LocalConnection.as: dynamic

2005-03-14 23:58  ncannasse

	* extc/extc_stubs.c: added executable_path for mac

2005-03-10 20:50  ncannasse

	* mtasc/: class.ml, doc/CHANGES.txt: fixed interface extends
	  interface.

2005-03-10 19:29  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.02

2005-03-10 19:25  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed instanceof & typeof
	  parsing.

2005-03-09 18:01  ncannasse

	* mtasc/: lexer.mll, doc/CHANGES.txt: added scientific floats.

2005-03-09 06:08  ncannasse

	* mtasc/typer.ml: removed "with" warning.

2005-03-09 05:36  ncannasse

	* mtasc/: expr.ml, genSwf.ml, lexer.mll, parser.ml, typer.ml,
	  doc/CHANGES.txt: added with and _level's

2005-03-06 21:02  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-03-06 21:01  ncannasse

	* mtasc/typer.ml: fixed "prototype" static resolved.

2005-03-06 21:00  ncannasse

	* mtasc/parser.ml: fixed typeof syntax & removed warning for
	  components.

2005-03-06 07:23  ncannasse

	* mtasc/: main.ml, mtasc.dsp, mtasc.vcproj, doc/install.ml: removed
	  checker.

2005-03-03 02:32  ncannasse

	* mtasc/main.ml: relaxed uppercase letter on argv files

2005-03-02 19:58  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: added getURL with one
	  argument only.

2005-03-02 06:22  ncannasse

	* mtasc/typer.ml: minor : relaxed error message on setters.

2005-02-28 19:32  ncannasse

	* mtasc/: main.ml, typer.ml, doc/CHANGES.txt: fixed "class Number
	  not found" when no std relaxed restriction on input file names

2005-02-25 19:44  ncannasse

	* mtasc/genSwf.ml: test if class already exists + -frame with
	  -header.

2005-02-25 19:13  ncannasse

	* mtasc/doc/CHANGES.txt: test if class already exists.

2005-02-22 03:39  ncannasse

	* mtasc/genSwf.ml: remove traces

2005-02-22 02:20  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.01

2005-02-22 02:18  ncannasse

	* mtasc/typer.ml: fixed inherited statics and super constructor
	  typecheck.

2005-02-22 02:18  ncannasse

	* mtasc/genSwf.ml: fixed return in for..in bug.

2005-02-11 04:29  ncannasse

	* mtasc/std/TopLevel.as: arguments fix

2005-02-11 02:44  ncannasse

	* mtasc/std/FunctionArguments.as: added

2005-02-07 20:33  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: added -exclude

2005-02-07 20:29  ncannasse

	* swflib/actionScript.ml: added 0x9E / CallFrame

2005-02-07 19:14  ncannasse

	* mtasc/: lexer.mll, doc/CHANGES.txt: dollars in identifiers

2005-02-03 22:48  ncannasse

	* mtasc/: genSwf.ml, std/TopLevel.as: added fscommand.

2005-02-03 00:17  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-02-03 00:15  ncannasse

	* mtasc/: typer.ml, genSwf.ml: fixed break in for..in

2005-02-01 20:28  ncannasse

	* mtasc/std/: ContextMenu.as, ContextMenuItem.as: added

2005-02-01 20:25  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-02-01 20:24  ncannasse

	* mtasc/typer.ml: fixed error in inherited statics

2005-02-01 02:33  ncannasse

	* mtasc/genSwf.ml: fixed toNumber

2005-01-31 20:28  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed type conversions
	  instead of cast.

2005-01-28 03:17  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed doaction+showframe
	  invertion.

2005-01-27 04:00  ncannasse

	* mtasc/main.ml: small fix for macosx executable path failure.

2005-01-27 03:23  ncannasse

	* extc/extc_stubs.c: fixed executable_path.

2005-01-26 23:10  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: 1.0

2005-01-26 22:53  ncannasse

	* mtasc/: genSwf.ml, main.ml, parser.ml, typer.ml: added -mx

2005-01-25 20:38  ncannasse

	* mtasc/std/Array.as: relaxed sort.

2005-01-24 22:49  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: Void unify with Any.

2005-01-21 22:32  ncannasse

	* mtasc/doc/CHANGES.txt: minor.

2005-01-21 22:30  ncannasse

	* mtasc/typer.ml: relaxed new so constructor can return any value.

2005-01-19 19:36  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2005-01-19 19:34  ncannasse

	* mtasc/genSwf.ml: fixed -separate with -main issues

2005-01-19 19:25  ncannasse

	* mtasc/genSwf.ml: fixed super fields access

2005-01-14 03:11  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: rc2

2005-01-14 03:00  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: fixed bug in enum added
	  superconstructor autocall added -separate

2005-01-13 19:43  ncannasse

	* mtasc/typer.ml: fixed multi-interface subtyping.

2005-01-13 04:44  ncannasse

	* mtasc/typer.ml: fixed constructor handling.

2005-01-12 03:15  ncannasse

	* mtasc/parser.ml: fixed typeof parsing.

2005-01-12 03:14  ncannasse

	* mtasc/main.ml: fixed package compilation

2005-01-11 23:26  ncannasse

	* mtasc/std/Error.as: added

2005-01-07 04:36  ncannasse

	* mtasc/parser.ml: re-fix for throw (optional parenthesis).

2005-01-07 04:34  ncannasse

	* mtasc/doc/CHANGES.txt: update

2005-01-07 04:34  ncannasse

	* mtasc/parser.ml: fixed small parsing problem with typeof

2005-01-05 03:53  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: fixed fun / Function
	  unification.

2005-01-05 03:23  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed throw parsing.

2005-01-04 22:42  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: rc1

2005-01-04 22:36  ncannasse

	* mtasc/: parser.ml, typer.ml: fixed new with variable class name.

2004-12-30 00:21  ncannasse

	* mtasc/genSwf.ml: enable utf8 string.

2004-12-22 03:11  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2004-12-22 02:30  ncannasse

	* mtasc/: expr.ml, genSwf.ml, lexer.mll, parser.ml, typer.ml: added
	  exceptions : try/catch/finally/throw.

2004-12-22 02:20  ncannasse

	* mtasc/std/TopLevel.as: added throw

2004-12-22 00:59  ncannasse

	* swflib/: actionScript.ml, swf.ml: added try opcode.

2004-12-21 23:53  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: main no more default.

2004-12-17 23:14  ncannasse

	* mtasc/doc/CHANGES.txt: update

2004-12-17 23:13  ncannasse

	* mtasc/main.ml: added warning when package is missing.

2004-12-17 23:13  ncannasse

	* mtasc/std/TopLevel.as: trace takes any object.

2004-12-14 00:23  ncannasse

	* mtasc/std/NetConnection.as: dynamic

2004-12-11 00:48  ncannasse

	* mtasc/doc/CHANGES.txt: update.

2004-12-11 00:43  ncannasse

	* mtasc/typer.ml: private methods can be accessed by childs.

2004-12-11 00:43  ncannasse

	* mtasc/genSwf.ml: added main, fixed super calls (no super
	  bindings).

2004-12-09 01:04  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: beta7

2004-12-09 00:54  ncannasse

	* mtasc/typer.ml: allowed private access to local class variables
	  in lambdas

2004-12-07 20:13  ncannasse

	* mtasc/parser.ml: fixed multiple implements syntax

2004-12-07 19:31  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: no strict mode for native
	  classes.

2004-12-01 22:55  ncannasse

	* mtasc/doc/CHANGES.txt: minor.

2004-12-01 22:54  ncannasse

	* mtasc/typer.ml: fixed bug when accessing superclass in static.

2004-12-01 20:29  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: released restriction on super.

2004-11-30 19:42  ncannasse

	* swflib/install.bat: added

2004-11-30 19:42  ncannasse

	* swflib/: swf.ml, swfParser.ml: added video tags.

2004-11-30 07:11  ncannasse

	* mtasc/: class.ml, genSwf.ml, typer.ml, doc/CHANGES.txt: fixed
	  missing implementation of import wildcards for genSwf

2004-11-30 05:08  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt: pop instead of trace for
	  string mark.

2004-11-30 04:12  ncannasse

	* mtasc/doc/CHANGES.txt: minors.

2004-11-30 04:12  ncannasse

	* mtasc/typer.ml: fixed imports in lambdas.

2004-11-23 03:17  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: beta6

2004-11-23 03:12  ncannasse

	* mtasc/doc/CHANGES.txt: typeof as operator.

2004-11-23 02:39  ncannasse

	* mtasc/parser.ml: typeof as operator.

2004-11-19 21:28  ncannasse

	* mtasc/doc/CHANGES.txt: update

2004-11-19 21:25  ncannasse

	* mtasc/typer.ml: fixed super when no super.

2004-11-19 21:25  ncannasse

	* mtasc/class.ml: fixed auto import.

2004-11-18 23:18  ncannasse

	* mtasc/: expr.ml, lexer.mll, parser.ml, typer.ml, doc/CHANGES.txt,
	  std/Object.as, std/TextField.as: some fixes so mx package is
	  compiling.

2004-11-18 23:11  ncannasse

	* mtasc/std/TextField/StyleSheet.as: package

2004-11-18 00:05  ncannasse

	* mtasc/parser.ml: fixed stack overflow when parsing metadata.

2004-11-17 23:51  ncannasse

	* mtasc/std/: Camera.as, Microphone.as, PrintJob.as: added

2004-11-17 23:50  ncannasse

	* mtasc/parser.ml: fixed function name "get" or "set".

2004-11-17 22:45  ncannasse

	* mtasc/std/: Accessibility.as, AsBroadcaster.as, Button.as,
	  NetStream.as, Selection.as: added

2004-11-17 22:40  ncannasse

	* mtasc/std/: NetConnection.as, Video.as: added.

2004-11-17 21:59  ncannasse

	* mtasc/doc/CHANGES.txt: minors.

2004-11-17 21:33  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: beta 5

2004-11-17 02:47  ncannasse

	* extc/: extc.ml, extc_stubs.c: added support for *nix executable
	  path

2004-11-13 09:22  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed parser for a (op) b ? x
	  : x'

2004-11-12 20:35  ncannasse

	* mtasc/: main.ml, typer.ml: added -strict

2004-11-12 01:13  ncannasse

	* mtasc/lexer.mll: fixed problem with float '.'

2004-11-11 20:56  ncannasse

	* mtasc/: lexer.mll, doc/CHANGES.txt: fixed lexer for mac newlines.

2004-11-11 20:03  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: fixed Function object unify
	  with any function.

2004-11-11 20:02  ncannasse

	* mtasc/doc/CHANGES.txt: update

2004-11-11 20:02  ncannasse

	* mtasc/doc/INSTALL.txt: improved changes.

2004-11-11 19:59  ncannasse

	* mtasc/mtasc.vcproj: added swfLib

2004-11-11 19:59  ncannasse

	* mtasc/lexer.mll: fixed numbers starting with '.'

2004-11-10 16:49  ncannasse

	* mtasc/: parser.ml, doc/CHANGES.txt: fixed multivariable ops,
	  added delete call without parenthesis

2004-11-10 07:14  ncannasse

	* mtasc/: class.ml, genSwf.ml, doc/CHANGES.txt: fixed init member
	  variable value generation.

2004-11-10 06:33  ncannasse

	* mtasc/doc/CHANGES.txt: hotfix

2004-11-10 06:33  ncannasse

	* mtasc/mtasc.vcproj: use swflib.

2004-11-10 06:30  ncannasse

	* mtasc/parser.ml: fixed assign for multiple assign.

2004-11-10 06:30  ncannasse

	* mtasc/genSwf.ml: fixed retval for double assignations, added
	  Swfparser init.

2004-11-10 06:03  ncannasse

	* swflib/: swflib.sln, swflib.vcproj: added

2004-11-10 06:02  ncannasse

	* swflib/swfParser.ml: added init

2004-11-10 04:59  ncannasse

	* swflib/actionScript.ml: added some protection for overflows

2004-11-10 04:48  ncannasse

	* mtasc/doc/CHANGES.txt: update

2004-11-10 04:47  ncannasse

	* mtasc/genSwf.ml: minor fix (package name).

2004-11-10 04:33  ncannasse

	* mtasc/main.ml: beta4

2004-11-10 04:26  ncannasse

	* mtasc/doc/CHANGES.txt: beta4

2004-11-10 04:26  ncannasse

	* mtasc/genSwf.ml: support for AS2 class from flash IDE + fixed
	  inheritance bug.

2004-11-10 03:58  ncannasse

	* mtasc/main.ml: added -pack option.

2004-11-10 03:55  ncannasse

	* mtasc/typer.ml: fixed error when null pos.

2004-11-10 03:30  ncannasse

	* mtasc/genSwf.ml: added arguments.

2004-11-10 03:16  ncannasse

	* mtasc/std/TopLevel.as: added arguments.

2004-11-10 03:12  ncannasse

	* mtasc/typer.ml: fixed error messages for unknown variable added
	  import wildcards

2004-11-10 03:06  ncannasse

	* mtasc/: mtasc.sln, mtasc.vcproj: added

2004-11-09 23:24  ncannasse

	* mtasc/: genSwf.ml, doc/CHANGES.txt, std/TopLevel.as: added
	  targetPath.

2004-11-06 13:00  ncannasse

	* mtasc/typer.ml: fixed bug when accessing local class

2004-11-05 11:53  ncannasse

	* mtasc/main.ml: priority of std.

2004-11-04 13:53  ncannasse

	* mtasc/: typer.ml, doc/CHANGES.txt: class import itself.

2004-11-03 19:05  ncannasse

	* mtasc/doc/CHANGES.txt: updated.

2004-11-03 18:59  ncannasse

	* mtasc/typer.ml: fixed interface A extends B.

2004-11-03 15:28  ncannasse

	* mtasc/: genSwf.ml, typer.ml: improved getter/setters and allowed
	  static ones.

2004-11-03 13:52  ncannasse

	* mtasc/: main.ml, doc/CHANGES.txt: beta3

2004-11-03 13:42  ncannasse

	* mtasc/genSwf.ml: added -frame and -header, fixed classes removal.

2004-11-03 13:38  ncannasse

	* swflib/swf.ml: added to_float16

2004-11-03 13:38  ncannasse

	* swflib/swfZip.ml: removed SIZE print.

2004-11-03 12:54  ncannasse

	* mtasc/std/StdPresent.as: added to detect std.

2004-11-03 12:52  ncannasse

	* mtasc/: expr.ml, genSwf.ml, parser.ml, typer.ml: added
	  getter/setter.

2004-11-03 12:51  ncannasse

	* mtasc/main.ml: added check for std.

2004-11-01 00:51  ncannasse

	* mtasc/: class.ml, expr.ml, genSwf.ml, main.ml, mtasc.dsp,
	  typer.ml: added casts , eval, genswf as plugin.

2004-10-31 23:42  ncannasse

	* mtasc/doc/install.ml: fixed anonymous login (empty passwd).

2004-10-31 23:42  ncannasse

	* mtasc/std/TopLevel.as: added eval.

2004-10-29 02:54  ncannasse

	* mtasc/doc/Readme.linux: linux bin.

2004-10-28 23:56  ncannasse

	* extc/Makefile: windows specific...

2004-10-28 23:55  ncannasse

	* extc/LICENSE, mtasc/LICENSE, swflib/LICENSE: added some license

2004-10-28 23:44  ncannasse

	* mtasc/doc/INSTALL.txt: minor.

2004-10-28 23:37  ncannasse

	* mtasc/doc/: INSTALL.txt, install.ml: fixes to build with 3.07 and
	  linux.

2004-10-28 23:30  ncannasse

	* extc/extc_stubs.c: String_val et pas Val_string

2004-10-28 22:47  ncannasse

	* mtasc/doc/install.ml: fixed swflib case

2004-10-28 18:23  ncannasse

	* mtasc/: expr.ml, genSwf.ml, lexer.mll, parser.ml, typer.ml,
	  doc/CHANGES.txt: added physical (in)equality operation.

2004-10-28 14:43  ncannasse

	* mtasc/doc/: INSTALL.txt, install.ml: added

2004-10-28 14:00  ncannasse

	* extc/extc.ml, extc/extc.mli, extc/extc_stubs.c, extc/test.ml,
	  mtasc/class.ml, mtasc/expr.ml, mtasc/genSwf.ml, mtasc/lexer.mll,
	  mtasc/main.ml, mtasc/parser.ml, mtasc/plugin.ml, mtasc/typer.ml,
	  swflib/actionScript.ml, swflib/swf.ml, swflib/swfParser.ml,
	  swflib/swfZip.ml: added copyright headers.

2004-10-28 13:52  ncannasse

	* mtasc/: main.ml, mtasc.dsp: changed from osdep to extc.

2004-10-28 13:52  ncannasse

	* swflib/swfZip.ml: changed from camlzip to extc.

2004-10-28 13:48  ncannasse

	* extc/extc.ml: fixed buffer size, flush, and compression level.

2004-10-28 13:16  ncannasse

	* extc/: Makefile, extc.ml, extc.mli, extc_stubs.c, test.ml: added

2004-10-28 13:07  ncannasse

	* mtasc/doc/CHANGES.txt: updated

2004-10-28 13:07  ncannasse

	* mtasc/typer.ml: added class/interf check when extends/implements
	  and modified s_type_decl

2004-10-27 17:38  ncannasse

	* mtasc/: class.ml, expr.ml, genSwf.ml, lexer.mll, main.ml,
	  mtasc.dsp, parser.ml, typer.ml, doc/CHANGES.txt: removed naming
	  convention, new build mode update swf.

2004-10-27 13:53  ncannasse

	* mtasc/: class.ml, expr.ml, genSwf.ml, lexer.mll, main.ml,
	  mtasc.dsp, parser.ml, typer.ml: metadata , superconstructor,
	  unify Static -> Function, remove AS2 classes (and -keep) and
	  import * parsing.

2004-10-25 17:46  ncannasse

	* mtasc/: main.ml, std/Object.as: beta1 last fixes

2004-10-25 17:24  ncannasse

	* mtasc/: class.ml, genSwf.ml, parser.ml, typer.ml,
	  std/TopLevel.as: working.

2004-10-22 23:04  ncannasse

	* mtasc/: class.ml, expr.ml, genSwf.ml, lexer.mll, main.ml,
	  mtasc.dsp, parser.ml, typer.ml, std/Date.as, std/Number.as,
	  std/Object.as, std/SharedObject.as, std/String.as,
	  std/TextFormat.as, std/TopLevel.as, std/XML.as, std/XMLNode.as,
	  std/TextField/StyleSheet.as: almost working.

2004-10-22 17:22  ncannasse

	* mtasc/std/: Array.as, Boolean.as, Color.as, Date.as, Function.as,
	  Key.as, LoadVars.as, LocalConnection.as, Math.as, Mouse.as,
	  MovieClip.as, MovieClipLoader.as, Number.as, Object.as,
	  SharedObject.as, Sound.as, Stage.as, String.as, System.as,
	  TextField.as, TextFormat.as, TopLevel.as, XML.as, XMLNode.as,
	  XMLSocket.as, TextField/StyleSheet.as: added

2004-10-20 23:24  ncannasse

	* mtasc/: .cvsignore, expr.ml, lexer.mll, main.ml, mtasc.dsp,
	  mtasc.dsw, parser.ml, plugin.ml, typer.ml: forked from mtypes.

2004-08-15 22:36  ncannasse

	* swflib/actionScript.ml: macromedia doubles.

2004-07-27 18:18  ncannasse

	* swflib/: swf.ml, swfZip.ml: fixed for new IO.

2004-07-16 19:51  ncannasse

	* swflib/swfZip.ml: added.

2004-07-16 19:51  ncannasse

	* swflib/swf.ml: minor update.

2004-07-16 19:51  ncannasse

	* swflib/actionScript.ml: fixed printer.

2004-07-14 02:58  ncannasse

	* swflib/: actionScript.ml, swf.ml: added needs for genSwf.

2004-06-16 20:20  ncannasse

	* swflib/: swf.ml, swfParser.ml: added place object events.

2004-06-11 23:08  ncannasse

	* swflib/actionScript.ml: fixed with (2).

2004-06-11 23:06  ncannasse

	* swflib/: actionScript.ml, swf.ml: fixed with.

2004-06-08 17:37  ncannasse

	* swflib/actionScript.ml: fixed With opcode (len = 2).

2004-05-18 20:59  ncannasse

	* swflib/swfParser.ml: fixed shape length bug.

2004-05-18 19:53  ncannasse

	* swflib/: swf.ml, swfParser.ml: added shapes and text2.

2004-05-11 17:47  ncannasse

	* swflib/swfParser.ml: fixed write bits overflow.

2004-04-27 00:49  ncannasse

	* swflib/swfParser.ml: fixed button2 actions.

2004-04-08 19:36  ncannasse

	* swflib/: swf.ml, swfParser.ml: added text and edit_text.

2004-04-08 01:34  ncannasse

	* swflib/: swf.ml, swfParser.ml: added shapes styles.

2004-04-07 19:14  ncannasse

	* swflib/: swf.ml, swfParser.ml: fixed extended, added
	  remove_object and mutable cids.

2004-04-07 02:58  ncannasse

	* swflib/: swf.ml, swfParser.ml: completed tag infos.

2004-04-04 22:31  ncannasse

	* swflib/swfParser.ml: replace ui32 by i32.

2004-04-01 23:08  ncannasse

	* swflib/: swf.ml, swfParser.ml: added compression.

2004-04-01 19:11  ncannasse

	* swflib/: actionScript.ml, swf.ml, swfParser.ml, tools.ml:
	  switched to extlib IO.

2004-03-07 06:38  ncannasse

	* swflib/: actionScript.ml, swf.ml, swfParser.ml, swflib.dsp,
	  tools.ml: finished parser.

2004-03-01 05:19  ncannasse

	* swflib/: swf.ml, swflib.dsp, swflib.dsw: initial import.