File: src_lexer.cpp

package info (click to toggle)
falconpl 0.9.6.9-git20120606-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 46,176 kB
  • sloc: cpp: 181,389; ansic: 109,025; yacc: 2,310; xml: 1,218; sh: 403; objc: 245; makefile: 82; sql: 20
file content (1947 lines) | stat: -rw-r--r-- 51,621 bytes parent folder | download | duplicates (2)
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
/*
   FALCON - The Falcon Programming Language
   FILE: src_lexer.cpp

   Short description
   -------------------------------------------------------------------
   Author: Giancarlo Niccolai
   Begin: sab ago 26 2006

   -------------------------------------------------------------------
   (C) Copyright 2004: the FALCON developers (see list in AUTHORS file)

   See LICENSE file for licensing details.
*/

/** \file
   Short description
*/
#include <stdio.h>

#include <falcon/error.h>
#include <falcon/setup.h>
#include <falcon/src_lexer.h>
#include <falcon/syntree.h>
#include <falcon/compiler.h>
#include <falcon/transcoding.h>

#include <falcon/stdstreams.h>

// Token internally used
#define ITOK_SEMICOMMA  0x7FFFFF01

#define VALUE  ((YYSTYPE*)value())


// Get the bison generated token defs
#include "src_parser.hpp"

namespace Falcon {

SrcLexer::SrcLexer( Compiler *comp ):
   m_value(0),
   m_line( 1 ),
   m_previousLine( 1 ),
   m_character( 0 ),
   m_prevStat(0),
   m_firstEq( false ),
   m_done( false ),
   m_addEol( false ),
   m_lineFilled( false ),
   m_bIsDirectiveLine(false),
   m_incremental( false ),
   m_lineContContext( false ),
   m_graphAgain( false ),
   m_chrEndString(0),
   m_in( 0 ),
   m_compiler( comp ),
   m_state( e_line ),
   m_mode( t_mNormal ),
   m_bParsingFtd(false),
   m_bWasntEmpty(false),
   m_topCtx(0)
{}

SrcLexer::~SrcLexer()
{
   reset();
}

void SrcLexer::reset()
{
   resetContexts();
   m_addEol = false; // revert what's done by resetContext

   m_prevStat = 0;
   m_character = 0;
   m_state = e_line;
   m_bIsDirectiveLine = false;
   m_bWasntEmpty = false;
   m_whiteLead = "";

   while( ! m_streams.empty() )
   {
      Stream *s = (Stream *) m_streams.back();
      m_streams.popBack();
      // all the streams except the first are to be deleted.
      if ( !m_streams.empty() )
         delete s;
   }
}

void SrcLexer::input( Stream *i )
{
   m_in = i;
   m_streams.pushBack(i);
   m_streamLines.pushBack( (uint32) m_line );
   m_done = false;
   m_addEol = false;
   m_lineFilled = false;
}


int SrcLexer::lex()
{
   switch( m_mode )
   {
      case t_mNormal: return lex_normal();
      case t_mOutscape: return lex_outscape();
      case t_mEval: return lex_eval();
   }

   return 0;
}


int SrcLexer::lex_outscape()
{
   enum {
      e_leadIn,
      e_normal,
      e_esc1,
      e_esc2,
      e_escF,
      e_escA,
      e_escL
   }
   state;

   // clear string
   m_string.size( 0 );

   // in outscape mode, everything up to an escape (or at EOF) is a "fast print" statement.
   uint32 chr;
   state = e_leadIn;
   m_state = e_line;
   m_bIsDirectiveLine = false;

   while( m_mode == t_mOutscape && m_in->get( chr ) )
   {
      if ( chr == '\n' )
      {
         m_previousLine = m_line;
         m_line++;
         m_character = 0;
         m_bIsDirectiveLine = false;

         if ( state == e_normal )
            state = e_leadIn;
      }
      else
      {
         m_character++;
      }

      switch( state )
      {
         case e_leadIn:
            if( isWhiteSpace(chr) )
            {
               m_whiteLead.append( chr );
               break;
            }
            else
               state = e_normal;

         // fall through, don't break

         case e_normal:
            if ( chr == '<' )
            {
               state = e_esc1;
            }
            else {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               m_string.append( chr );
            }
         break;

         case e_esc1:
            if ( chr == '?' )
               state = e_esc2;
            else {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               m_string.append( '<' );
               m_string.append( chr );
               state  = e_normal;
            }
         break;

         case e_esc2:
            if ( chr == '=' )
            {
               // reset lead chars and eventually remove last \n
               m_whiteLead.size(0);
               // but don't remove extra EOL; we want another line.
               m_bWasntEmpty = true;

               // we enter now in the eval mode
               m_mode = t_mEval;
               // and break from the loop so to return the string to print.
               break;
            }
            else if ( isWhiteOrEOL(chr) )
            {

               // reset lead chars and eventually remove last \n
               m_whiteLead.size(0);
               m_bWasntEmpty = m_string.size() > 0;
               if ( m_string.size() > 0 && m_string.getCharAt( m_string.length() -1 ) == '\n' )
                  m_string.size( m_string.size() - m_string.manipulator()->charSize() );

               // we enter now the normal mode; we start to consider a standard program.
               m_mode = t_mNormal;
               // and break from the loop so to return the string to print.
               break;
            }
            else if ( chr == 'f' )
            {
               state = e_escF;
            }
            else
            {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               state = e_normal;
               m_string.append( '<' );
               m_string.append( '?' );
               m_string.append( chr );
            }
         break;

         case e_escF:
            if ( chr == 'a' )
            {
               state = e_escA;
            }
            else {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               state = e_normal;
               m_string.append( '<' );
               m_string.append( '?' );
               m_string.append( 'f' );
               m_string.append( chr );
            }
         break;

         case e_escA:
            if ( chr == 'l' )
            {
              state = e_escL;
            }
            else {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               state = e_normal;
               m_string.append( '<' );
               m_string.append( '?' );
               m_string.append( 'f' );
               m_string.append( 'a' );
               m_string.append( chr );
            }
         break;

         case e_escL:
            if ( isWhiteOrEOL(chr) )
            {
               // reset lead chars and eventually remove last \n
               m_whiteLead.size(0);
               m_bWasntEmpty = m_string.size() > 0;
               if ( m_string.size() > 0 && m_string.getCharAt( m_string.length() -1 ) == '\n' )
                  m_string.size( m_string.size() - m_string.manipulator()->charSize() );

               // we enter now the normal mode; we start to consider a standard program.
               m_mode = t_mNormal;
               // and break from the loop so to return the string to print.
               break;
            }
            else {
               if ( m_whiteLead.size() > 0 )
               {
                  m_string.append( m_whiteLead );
                  m_whiteLead.size(0);
               }

               state = e_normal;
               m_string.append( '<' );
               m_string.append( '?' );
               m_string.append( 'f' );
               m_string.append( 'a' );
               m_string.append( 'l' );
               m_string.append( chr );
            }
         break;
      }
   }

   if( m_string.size() != 0 )
   {
      VALUE->stringp = m_compiler->addString( m_string );
      m_string.size( 0 );
      m_string.exported( false );
      return OUTER_STRING;
   }

   // else proceed with normal evaluation as we can't return nothing
   if( m_in->good() )
   {
      switch( m_mode )
      {
         case t_mNormal: return lex_normal();
         case t_mEval: return lex_eval();
         case t_mOutscape: return 0;
      }
   }

   return 0;
}


int SrcLexer::lex_eval()
{
   // prepare for a normal scan
   m_mode = t_mNormal;

   // returns a SHR, which will be interpreted as a fast print
   return SHR;
}


int SrcLexer::lex_normal()
{
   // generate an extra eol?
   if ( m_addEol )
   {
      m_addEol = false;

      // ignore in incremental mode with open contexts
      if ( ! (m_done && incremental() && hasOpenContexts()) )
      {
         m_lineFilled = false;
         if ( ! inParCtx() )
         {
            m_bIsDirectiveLine = false;
            return EOL;
         }
      }
   }

   if( m_graphAgain )
   {
      m_graphAgain = false;
      return CLOSE_GRAPH;
   }

   if ( m_done )
   {
      // raise error if there is some lexer context open
      // in incremental mode ignore completely end of file errors
      if ( ! m_incremental )
         checkContexts();
      return 0;
   }

   // check for shell directive
   if ( m_line == 1 && m_character == 0 )
   {
      uint32 ch1, ch2;
      if( m_in->get( ch1 ) )
      {
         if( m_in->get( ch2 ) )
         {
            if ( ch1 == '#' && ch2 == '!' )
            {
               while( ch1 != '\n' )
                  if( ! m_in->get( ch1 ) )
                  {
                     checkContexts();
                     return 0;
                  }

               m_line++;
            }
            else {
               m_in->unget( ch2 );
               m_in->unget( ch1 );
            }
         }
         else
            m_in->unget( ch1 );
      }
      else {
         checkContexts();
         return 0;
      }
   }

   // reset previous token
   m_lineContContext = false;
   m_string.size(0);
   m_string.manipulator( &csh::handler_buffer );

   String tempString;
   uint32 chr;

   bool next_loop = true;

   while( next_loop )
   {
      next_loop = m_in->get( chr );

      if ( ! next_loop )
      {
         // if this is the last stream, ask also an extra EOL
         m_streams.popBack();
         if ( m_streams.empty() )
         {
            // fake an empty terminator at the end of input.
            chr = '\n';

            if ( ! m_incremental || ! hasOpenContexts() )
               m_addEol = true;

            m_done = true;
         }
         else {
            delete m_in; // all the streams except first are to be disposed.
            m_in = (Stream *) m_streams.back();
            m_line = (uint32)(int64) m_streamLines.back();
            m_streamLines.popBack();
            m_previousLine = m_line-1;
            next_loop = true;
            continue;
         }
      }

      m_character++;

      // Totally ignore '\r'
      if ( chr == '\r' )
         continue;

      switch ( m_state )
      {
         case e_line:
            // in none status, we have to discard blanks and even ignore '\n';
            // we enter in line or string status depending on what we find.
            if( ! isWhiteSpace( chr ) )
            {
               m_previousLine = m_line;
               if( m_bIsDirectiveLine && chr == '.' )
               {
                  // just ignore it
                  m_string.append( chr );
                  break;
               }

               // whitespaces and '\n' can't follow a valid symbol,
               // as since they are token limiters, and they would be read
               // ahead after token begin, valid symbols and token has already
               // been returned.

               int token = state_line( chr );
               if ( token != 0 ) {
                  // we have a token in this line
                  //m_lineFilled = true;
                  return token;
               }
            }
         break;

         case e_symbol:
            m_lineFilled = true;
            if ( isTokenLimit( chr ) )
            {
               // end of symbol
               // special x" notation?
               if( m_string.size() == 1 && (chr == '"' || chr == '\''))
               {
                  // recognize only the i" for now
                  if ( m_string[0] == 'i' )
                  {
                     uint32 nextChr;
                     // we'll begin to read a string.
                     if ( readAhead( nextChr ) && nextChr == '\n' )
                     {
                        m_mlString = true;
                        m_line++;
                        m_character = 0;
                        m_in->discardReadAhead( 1 );
                        m_state = chr == '"' ? e_stringRunning : e_litString;
                     }
                     else {
                        m_state = chr == '"' ? e_string : e_litString;
                     }

                     pushContext( ct_string, m_line );
                     m_string.size(0); // remove first char.
                     m_string.exported( true );
                     m_chrEndString = chr; //... up to the matching "
                     break;
                  }
                  // else, just let it through.
               }

               // unless we have a dot in a load directive or namespace
               if( chr == '.' )
               {
                  if ( m_bIsDirectiveLine ||
                     ( m_string.size() != 0 && m_compiler->isNamespace( m_string ))
                  )
                  {
                     // just ignore it
                     m_string.append( chr );
                     break;
                  }
               }


               // push this chr back; we want to read it again in line state
               if( ! isWhiteSpace( chr ) ) // save a loop
                  m_in->unget( chr );

               m_state = e_line;
               // it may be a named token
               int token = checkLimitedTokens();

               if ( token != 0 )
               {
                  return token;
               }
               // internally parsed?
               else if ( m_string.size() == 0 ) {
                  // reset
                  m_state = e_line;
                  continue;
               }

               // see if we have named constants
               const Value *cval = m_compiler->getConstant( m_string );

               if ( cval != 0 ) {
                  switch( cval->type() ) {
                     case Falcon::Value::t_nil: return NIL;
                     case Falcon::Value::t_imm_integer: VALUE->integer = cval->asInteger(); return INTNUM;
                     case Falcon::Value::t_imm_num: VALUE->numeric = cval->asNumeric(); return DBLNUM;
                     case Falcon::Value::t_imm_string: VALUE->stringp = cval->asString(); return STRING;
                     default: return NIL;  // signal error?
                  }
               }

               // we have a symbol
               VALUE->stringp = m_compiler->addString( m_string );
               return SYMBOL;
            }
            else
               m_string.append( chr );
         break;

         case e_operator:
         {
            // have we a token?
            int token = checkUnlimitedTokens( chr );
            if ( token > 0 ) {
               // great, we have a token
               m_lineFilled = true;
               m_state = e_line;
               m_in->unget( chr );

               return token;
            }
            else if ( token < 0 || m_string.length() == 3 ) {
               // We have aknowledged this can't be a valid token.
               m_in->unget( chr );
               m_state = e_line;
               m_string = m_string.subString( 0, 1 );
               m_compiler->raiseError( e_inv_token, "'" + m_string + "'", m_line );
               // do not return.
            }

            // if we have been switched to another state, we have aknowledged something
            if ( m_state != e_operator ) {
               m_in->unget( chr );
               m_string.size( 0 );
            }
            else
               m_string.append( chr );
         }
         break;

         case e_eolComment:
            if ( chr == '\n' )
            {
               m_previousLine = m_line;
               m_line ++;
               m_character = 0;
               m_bIsDirectiveLine = false;
               m_state = e_line;

               // a real EOL has been provided here.
               if ( m_state == e_line && ! inParCtx() )
               {
                  m_bIsDirectiveLine = false;
                  if ( m_lineFilled )
                  {
                     m_lineFilled = false;
                     return EOL;
                  }
               }
            }
         break;

         case e_blockComment:
            if ( chr == '\n' )
            { // previous line stays the same
               m_line ++;
               m_character = 0;
               m_bIsDirectiveLine = false;
            }
            else if ( chr == '*' )
            {
               uint32 nextChr;
               readAhead( nextChr );
               if ( nextChr == '/' )
               {
                  m_in->discardReadAhead( nextChr );
                  m_state = e_line;
               }
            }
         break;

         case e_intNumber:
            m_lineFilled = true;
            if ( chr == '.' )
            {
               // a method on a number?
               uint32 nextChr;
               if ( readAhead( nextChr ) && (nextChr < '0' || nextChr > '9') )
               {
                  // end
                  m_in->unget( chr );
                  int64 retval;
                  if ( ! m_string.parseInt( retval ) )
                     m_compiler->raiseError( e_inv_num_format, m_line );

                  VALUE->integer = retval;
                  m_state = e_line;
                  return INTNUM;
               }

               // no.
               m_string.append( chr );
               m_state = e_floatNumber;
            }
            else if ( chr == 'e' )
            {
               m_state = e_floatNumber_e;
               m_string.append( chr );
            }
            else if ( chr >= '0' && chr <= '9' )
            {
               m_string.append( chr );
            }
            else if ( chr != '_' )
            {
               // end
               m_in->unget( chr );
               int64 retval;
               if ( ! m_string.parseInt( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               VALUE->integer = retval;
               m_state = e_line;
               return INTNUM;
            }
         break;

         case e_floatNumber:
            m_lineFilled = true;
            if ( chr == 'e' )
            {
               m_state = e_floatNumber_e;
               m_string.append( chr );
            }
            else if ( chr >= '0' && chr <= '9'  )
            {
               m_string.append( chr );
            }
            else if ( chr != '_' )
            {
               // end
               m_in->unget( chr );

               // "0." ?
               if( m_string == "0." )
               {
                  m_in->unget( '.' );
                  VALUE->integer = 0;
                  m_state = e_line;
                  return INTNUM;
               }

               numeric retval;
               if ( ! m_string.parseDouble( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               VALUE->numeric = retval;
               m_state = e_line;
               return DBLNUM;
            }
         break;

         case e_floatNumber_e:
            m_lineFilled = true;
            if ( (chr < '0' || chr > '9' ) && chr != '+' && chr != '-' )
            {
               m_in->unget( chr );
               m_compiler->raiseError( e_inv_num_format, m_line );

               m_state = e_line;
               VALUE->numeric = 0.0;
               return DBLNUM;
            }

            m_state = e_floatNumber_e1;
            m_string.append( chr );
         break;

         case e_floatNumber_e1:
            m_lineFilled = true;
            if ( chr < '0' || chr > '9' )
            {
               // end
               m_in->unget( chr );

               numeric retval;
               if ( ! m_string.parseDouble( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               m_state = e_line;
               VALUE->numeric = retval;
               return DBLNUM;
            }

            m_string.append( chr );
         break;

         case e_zeroNumber:
            m_lineFilled = true;
            if( chr == 'x' || chr == 'X' )
            {
               m_string.size( 0 );
               m_state = e_hexNumber;
            }
            else if ( chr == 'b' || chr == 'B' )
            {
               m_string.size( 0 );
               m_state = e_binNumber;
            }
            else if ( chr == 'c' || chr == 'C' )
            {
               m_string.size( 0 );
               m_state = e_octNumber;
            }
            else if ( chr >= '0' && chr <= '7' )
            {
               m_string.size( 0 );
               m_string.append( chr );
               m_state = e_octNumber;
            }
            else if ( chr == '.' ) {
               m_string = "0.";
               m_state = e_floatNumber;
            }
            else if ( isTokenLimit( chr ) )
            {
               m_state = e_line;
               VALUE->integer = 0;
               if( ! isWhiteSpace( chr ) )
                  m_in->unget( chr );
               return INTNUM;
            }
            else {
               m_compiler->raiseError( e_inv_num_format, m_line );
               m_state = e_line;
            }
         break;

         case e_octNumber:
            m_lineFilled = true;
            if ( chr >= '0' && chr <= '7' )
            {
               m_string.append( chr );
            }
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! m_string.parseOctal( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               VALUE->integer = retval;
               m_state = e_line;
               return INTNUM;
            }
         break;

         case e_binNumber:
            m_lineFilled = true;
            if ( chr == '0' || chr == '1' )
               m_string.append( chr );
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! m_string.parseBin( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               VALUE->integer = retval;
               m_state = e_line;
               return INTNUM;
            }
         break;

         case e_hexNumber:
            m_lineFilled = true;
            if (  (chr >= '0' && chr <= '9') ||
                  (chr >= 'a' && chr <= 'f') ||
                  (chr >= 'A' && chr <= 'F')
               )
            {
                  m_string.append( chr );
            }
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! m_string.parseHex( retval ) )
                  m_compiler->raiseError( e_inv_num_format, m_line );

               VALUE->integer = retval;
               m_state = e_line;
               return INTNUM;
            }
         break;

         case e_litString:
            m_lineFilled = true;
            if ( chr == '\n' )
            {
               if( ! m_mlString )
               {
                  m_compiler->raiseError( e_nl_in_lit, m_line );
                  m_lineFilled = false;
                  m_character = 0;
                  m_bIsDirectiveLine = false;
                  m_compiler->raiseError( e_nl_in_lit, m_previousLine );
                  m_state = e_line;
                  popContext();
               }
               m_string.append( chr );
               m_previousLine = m_line;
               m_line++;
            }
            else if ( chr == '\'' )
            {
               uint32 nextChar;
               if ( readAhead( nextChar ) && nextChar == '\'' )
               {
                  m_string.append( '\'' );
                  m_in->discardReadAhead(1);
               }
               else {
                  m_state = e_line;
                  popContext();
                  VALUE->stringp = m_compiler->addString( m_string );
                  m_string.exported( false );
                  return STRING;
               }
            }
            else
               m_string.append( chr );
         break;

         case e_string:
            m_lineFilled = true;
            // an escape ?
            if ( chr == '\\' )
            {
               uint32 nextChar;
               readAhead( nextChar );
               switch ( nextChar )
               {
                  case '\\': nextChar = '\\'; break;
                  case 'n': nextChar = '\n'; break;
                  case 'b': nextChar = '\b'; break;
                  case 't': nextChar = '\t'; break;
                  case 'r': nextChar = '\r'; break;
                  case 's': nextChar = 1; break;

                  case 'x': case 'X':
                     nextChar = 1;
                     tempString.size(0);
                     m_state = e_stringHex;
                  break;

                  case 'B':
                     nextChar = 1;
                     tempString.size(0);
                     m_state = e_stringBin;
                  break;

                  case '0': case 'c': case 'C':
                     nextChar = 1;
                     tempString.size(0);
                     m_state = e_stringOctal;
                  break;

                  // when none of the above, just keep nextchar as is.
               }
               if ( nextChar != 0 ) {
                  m_in->discardReadAhead( 1 );
                  if ( nextChar != 1 )
                     m_string.append( nextChar );
               }
            }
            else if ( chr == '\n' )
            {
               if( ! m_mlString )
               {
                  m_compiler->raiseError( e_nl_in_lit, m_line );
                  m_lineFilled = false;
                  m_bIsDirectiveLine = false;
                  m_compiler->raiseError( e_nl_in_lit, m_previousLine );
                  m_state = e_line;
                  popContext();
               }
               else
                  m_state = e_stringRunning;

               m_previousLine = m_line;
               m_line++;
               m_character = 0;
               m_bIsDirectiveLine = false;
            }
            else if ( chr == m_chrEndString )
            {
               popContext();
               m_state = e_line;
               VALUE->stringp = m_compiler->addString( m_string );
               m_string.exported( false );
               return STRING;
            }
            else
               m_string.append( chr );
         break;

         case e_stringRunning:
            if ( ! isWhiteSpace( chr ) )
            {
               if ( chr == '\n' )
               {
                  m_previousLine = m_line;
                  m_line++;
                  m_character = 0;
               }
               else if ( chr == m_chrEndString )
               {
                  popContext();
                  m_state = e_line;
                  VALUE->stringp = m_compiler->addString( m_string );
                  m_string.exported( false );
                  return STRING;
               }
               else {
                  m_state = e_string;
                  if ( m_string.size() != 0 )
                     m_string.append( ' ' );
                  m_in->unget( chr );
               }
            }
         break;

         case e_stringHex:
            if (  (chr >= '0' && chr <= '9') ||
                     (chr >= 'a' && chr <= 'f') ||
                     (chr >= 'A' && chr <= 'F')
               )
            {
                  tempString.append( chr );
            }
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! tempString.parseHex( retval ) || retval > 0xFFFFFFFF )
                  m_compiler->raiseError( e_inv_esc_sequence, m_line );
               m_string.append( (uint32) retval );
               m_state = e_string;
            }
         break;

         case e_stringBin:
            if ( chr == '0' || chr == '1' )
            {
               tempString.append( chr );
            }
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! tempString.parseBin( retval ) || retval > 0xFFFFFFFF )
                  m_compiler->raiseError( e_inv_esc_sequence, m_line );
               m_string.append( (uint32) retval );
               m_state = e_string;
            }
         break;

         case e_stringOctal:
            if (  (chr >= '0' && chr <= '7') )
            {
               tempString.append( chr );
            }
            else if ( chr != '_' )
            {
               m_in->unget( chr );
               uint64 retval;
               if ( ! tempString.parseOctal( retval ) || retval > 0xFFFFFFFF )
                  m_compiler->raiseError( e_inv_esc_sequence, m_line );
               m_string.append( (uint32) retval );
               m_state = e_string;
            }
         break;

         default:
            break;
      }
   }

   if ( ! m_incremental )
      checkContexts();

   return 0;
}


void SrcLexer::checkContexts()
{
   t_contextType ct = currentContext();

   if ( ct == ct_round )
      m_compiler->raiseContextError( e_par_unbal, m_line, contextStart() );
   else if ( ct == ct_square )
      m_compiler->raiseContextError( e_square_unbal, m_line, contextStart() );
   else if ( ct == ct_graph )
      m_compiler->raiseContextError( e_graph_unbal, m_line, contextStart() );
   else if ( ct == ct_string  )
      m_compiler->raiseContextError( e_unclosed_string, m_line, contextStart() );
}


int SrcLexer::state_line( uint32 chr )
{
   if ( chr == '\n' )
   {
      m_previousLine = m_line;
      m_line ++;
      m_character = 0;

      // a real EOL has been provided here.
      m_bIsDirectiveLine = false;
      if ( m_lineFilled && ! inParCtx() )
      {
         m_lineFilled = false;
         return EOL;
      }
   }
   else if ( chr == '\\' )
   {
      // don't return at next eol:
      uint32 nextChr;
      if ( ! readAhead( nextChr ) )
      {
         // end of file; if we're in incremental mode,
         // declare the opening of a temporary context
         if ( m_incremental )
         {
            m_lineContContext = true;
         }
      }
      else if ( nextChr == '\n' )
      {
         m_previousLine = m_line;
         m_line ++;
         m_character = 0;
         m_in->discardReadAhead( 1 );
      }
      else if ( nextChr == '\\' )
      {
         m_in->discardReadAhead( 1 );
         parseMacroCall();
      }
      else if ( nextChr == '[' )
      {
         int startline = m_line;
         m_in->discardReadAhead( 1 );
         // create meta data up to \]
         String temp;
         temp.reserve( 512 );
         uint32 chr;
         bool waiting = false;
         while( m_in->get( chr ) )
         {

            if ( chr == '\\' )
            {
               waiting = true;
            }
            else {
               if ( waiting )
               {
                  // done?
                  if ( chr == ']' )
                     break;

                  temp.append( '\\' );
                  waiting = false;
               }

               if ( chr == '\n' )
               {
                  m_previousLine = m_line;
                  m_line ++;
                  m_character = 0;
                  waiting = false;
               }

               temp.append( chr );
            }
         }

         temp.append( '\n' );
         m_compiler->metaCompile( temp, startline );
      }
   }
   else if ( chr < 0x20 )
   {
      // only invalid characters are in this range.
      String value;
      value.writeNumberHex( chr, true );
      m_compiler->raiseError( e_charRange, value, m_line );
      m_state = e_eolComment; // ignore the rest of the line
   }
   else if ( chr == '"' )
   {
      uint32 nextChr;
      // we'll begin to read a string.
      if ( readAhead( nextChr ) && nextChr == '\n' )
      {
         m_mlString = true;
         m_line++;
         m_character = 0;
         m_in->discardReadAhead( 1 );
         m_state = e_stringRunning;
      }
      else {
         m_mlString = false;
         m_state = e_string;
      }

      pushContext( ct_string, m_line );
      m_chrEndString = '"'; //... up to the matching "
   }
   else if ( chr == 0x201C )
   {
      uint32 nextChr;
      // we'll begin to read a string.
      if ( readAhead( nextChr ) && nextChr == '\n' )
      {
         m_mlString = true;
         m_line++;
         m_character = 1;
         m_in->discardReadAhead( 1 );
      }
      else
         m_mlString = false;
      // we'll begin to read a string.
      m_state = e_string;
      pushContext( ct_string, m_line );
      m_chrEndString = 0x201D; //... up to the matching close quote
   }
   else if ( chr == 0x300C )
   {
      uint32 nextChr;
      // we'll begin to read a string.
      if ( readAhead( nextChr ) && nextChr == '\n' )
      {
         m_mlString = true;
         m_line++;
         m_character = 1;
         m_in->discardReadAhead( 1 );
      }
      else
         m_mlString = false;
      // we'll begin to read a string.
      m_state = e_string;
      pushContext( ct_string, m_line );
      m_chrEndString = 0x300D; //... up to the matching close japanese quote
   }
   else if ( chr == '\'' )
   {
      uint32 nextChr;
      // we'll begin to read a string.
      if ( readAhead( nextChr ) && nextChr == '\n' )
      {
         m_mlString = true;
         m_line++;
         m_character = 1;
         m_in->discardReadAhead( 1 );
      }
      else
         m_mlString = false;

      // we'll begin to read a non escaped string
      pushContext( ct_string, m_line );
      m_state = e_litString;
   }
   else if ( chr == '0' )
   {
      // we'll begin to read a 0 based number.
      m_state = e_zeroNumber;
   }
   else if ( chr >= '1' && chr <= '9' )
   {
      // reading a std number
      m_string.append( chr );
      m_state = e_intNumber;
   }
   else
   {
      // store this character.
      m_string.append( chr );

      // if it's an operator character, enter in operator mode.
      if ( isTokenLimit( chr ) )
         m_state = e_operator;
      else
         m_state = e_symbol;
   }

   return 0;
}

int SrcLexer::checkUnlimitedTokens( uint32 nextChar )
{
   switch( m_string.length() )
   {
      case 1:
      {
         uint32 chr = m_string.getCharAt( 0 );
         if ( chr == ';'  )
         {
            m_bIsDirectiveLine = false;
            // but not first sym
            if ( m_lineFilled && ! inParCtx() )
            {
               m_lineFilled = false;
               return EOL;
            }
         }
         else if ( chr == '+' && nextChar != '=' && nextChar != '+' )
            return PLUS;
         else if ( chr == '-' && nextChar != '=' && nextChar != '-' )
            return MINUS;
         else if ( chr == '*' && nextChar != '=' && nextChar != '*' )
            return STAR;
         else if ( chr == '/' && nextChar != '=' && nextChar != '/' && nextChar != '*' )
            return SLASH;
         else if ( chr == '%' && nextChar != '=' )
            return PERCENT;
         else if ( chr == '&' && nextChar != '=' && nextChar != '&' )
            return AMPER;
         else if ( chr == '~' && nextChar != '=' )
               return TILDE;
         else if ( chr == '|' && nextChar != '=' && nextChar != '|' )
            return VBAR;
         /*
         else if ( chr == '^' && nextChar != '=' && nextChar != '^' )
            return CAP;
         */
         /*else if ( chr == '!' && nextChar != '=' )
               return BANG;
         */
         else if ( chr == '$' )
         {
            return DOLLAR;
         }
         else if ( chr == ':' )
         {
               // but they don't reset first sym
            return COLON;
         }
         else if( chr == ',' )
            return COMMA;
         else if( chr == ';' )
            return ITOK_SEMICOMMA;
         else if ( chr == '.' && nextChar != '=' && nextChar != '[' && nextChar != '"' )
            return DOT;
         else if ( chr == '?' )
         {
            if ( ! parsingFtd() || nextChar != '>' )
               return QUESTION;
         }
         else if ( chr == '>' && nextChar != '=' && nextChar != '>' )
            return GT;
         else if ( chr == '<' && nextChar != '=' && nextChar != '<' )
            return LT;
         else if ( chr == '=' && nextChar != '=' && nextChar != '>' )
         {
            return OP_EQ;
         }
         else if ( chr == '(' || chr == 0xff08 )
         {
            pushContext( ct_round, m_line );
            return OPENPAR;
         }
         else if ( chr == ')' || chr == 0xff09 )
         {
            if ( currentContext() != ct_round )
               m_compiler->raiseError( e_par_close_unbal, m_line );
            else
            {
               popContext();
               return CLOSEPAR;
            }
         }
         else if ( chr == '[' )
         {
            pushContext( ct_square, m_line );
            return OPENSQUARE;
         }
         else if ( chr == ']' )
         {
            if ( currentContext() != ct_square )
            {
               m_compiler->raiseError( e_square_close_unbal, m_line );
            }
            else
            {
               popContext();
               return CLOSESQUARE;
            }
         }
         else if ( chr == '{' )
         {
            pushContext( ct_graph, m_line );
            return OPEN_GRAPH;
         }
         else if ( chr == '}' )
         {
            if ( currentContext() == ct_graph )
            {
               m_graphAgain = true;
               popContext();
               return EOL;
            }
            else
               m_compiler->raiseError( e_graph_close_unbal, m_line );
         }
         else if ( chr == '@' )
         {
            return ATSIGN;
         }
         else if ( chr == '#' )
         {
            return DIESIS;
         }
      }
      break;

      case 2:
         // EXTENDED CAP OPERATORS
         if ( m_string == "^=" )
            return ASSIGN_BXOR;
         else if ( m_string == "^^" )
            return CAP_CAP;
         else if ( m_string == "^*" )
            return CAP_EVAL;
         else if ( m_string == "^!" )
            return CAP_XOROOB;
         else if ( m_string == "^?" )
            return CAP_ISOOB;
         else if ( m_string == "^-" )
            return CAP_DEOOB;
         else if ( m_string == "^+" )
            return CAP_OOB;
         //====
         else if ( m_string == "=>" )
            return ARROW;
         else if ( m_string == "==" )
            return EEQ;
         else if ( m_string == "!=" )
            return NEQ;
         else if ( m_string == ">=" )
            return GE;
         else if ( m_string == "<=" )
            return LE;
         else if ( m_string == "+=" )
            return ASSIGN_ADD;
         else if ( m_string == "-=" )
            return ASSIGN_SUB;
         else if ( m_string == "*=" )
            return ASSIGN_MUL;
         else if ( m_string == "/=" )
            return ASSIGN_DIV;
         else if ( m_string == "%=" )
            return ASSIGN_MOD;
         else if ( m_string == "&=" )
            return ASSIGN_BAND;
         else if ( m_string == "|=" )
            return ASSIGN_BOR;
         else if ( m_string == "&&" )
            return AMPER_AMPER;
         else if ( m_string == "||" )
            return VBAR_VBAR;
         else if ( m_string == ">>" && nextChar != '=' )
            return SHR;
         else if ( m_string == "<<" && nextChar != '=' )
            return SHL;
         else if ( m_string == "++" )
            return INCREMENT;
         else if ( m_string == "--" )
            return DECREMENT;
         else if ( m_string == "**" && nextChar != '=' )
            return POW;
         else if ( m_string == "//" )
            m_state = e_eolComment;
         else if ( m_string == "/*" )
            m_state = e_blockComment;
         else if ( m_string == ".=" )
            return FORDOT;
         else if ( m_string == ".[" )
         {
            pushContext( ct_square, m_line );
            return LISTPAR;
         }
         else if ( parsingFtd() && m_string == "?>" && (nextChar != '\n' || m_in->eof() ))
         {
            m_mode = t_mOutscape;
            m_bIsDirectiveLine = false;
            return EOL;
         }
      break;

      case 3:
         if ( parsingFtd() && m_string == "?>\n" )
         {
            m_mode = t_mOutscape;
            if ( m_bWasntEmpty )
               m_whiteLead = "\n";
            m_bIsDirectiveLine = false;
            m_previousLine = m_line;
            m_line++;
            m_character = 0;
            return EOL;
         }
         else if ( m_string == ">>=" )
            return ASSIGN_SHR;
         else if ( m_string == "<<=" )
            return ASSIGN_SHL;
         else if ( m_string == "**=" )
            return ASSIGN_POW;
      break;
   }

   return 0;
}

int SrcLexer::checkLimitedTokens()
{
   switch( m_string.length() )
   {
      case 1:
         if ( m_string == "_" )
            return UNB;
      break;

      case 2:
         if ( m_string == "or" )
            return OR;
         else if ( m_string == "in" )
            return OP_IN;
         else if ( m_string == "if" )
            return IF;
         else if ( m_string == "to" )
            return OP_TO;
         else if ( m_string == "as" )
            return OP_AS;
         else if ( m_string == "eq" )
            return OP_EXEQ;
      break;

      case 3:
         if ( m_string == "not" )
            return NOT;
         if ( m_string == "try" )
            return TRY;
         else if ( m_string == "nil" )
            return NIL;
         else if ( m_string == "for" )
            return FOR;
         else if ( m_string == "and" )
            return AND;
         else if ( m_string == "and" )
            return AND;
         else if ( m_string == "end" )
            return END;
         else if ( m_string == "def" )
            return DEF;

      break;

      case 4:
         if ( m_string == "load" )  // directive
         {
            m_bIsDirectiveLine = true;
            return LOAD;
         }
         if ( m_string == "init" )
            return INIT;
         if ( m_string == "else" )
            return ELSE;
         if ( m_string == "elif" )
            return ELIF;
         if ( m_string == "from" )
            return FROM;
         if ( m_string == "self" )
            return SELF;
         if ( m_string == "case" )
            return CASE;
         if ( m_string == "loop" )
            return LOOP;
         if ( m_string == "true" )
            return TRUE_TOKEN;
         if ( m_string == "enum" )
            return ENUM;
      break;

      case 5:
         if ( m_string == "catch" )
            return CATCH;
         if ( m_string == "break" )
            return BREAK;
         if ( m_string == "raise" )
            return RAISE;
         if ( m_string == "class" )
            return CLASS;
         if ( m_string == "notin" )
            return OP_NOTIN;
         if ( m_string == "const" )
            return CONST_KW;
         if ( m_string == "while" )
            return WHILE;
         if ( m_string == "false" )
            return FALSE_TOKEN;
         if ( m_string == "fself" )
            return FSELF;
         if( m_string == "macro" )
         {
            m_string.size(0);
            parseMacro();
            return 0;
         }
      break;

      case 6:
         if ( m_string == "switch" )
            return SWITCH;
         if ( m_string == "select" )
            return SELECT;
         if ( m_string == "global" )
            return GLOBAL;
         if ( m_string == "launch" )
            return LAUNCH;
         if ( m_string == "object" )
            return OBJECT;
         if ( m_string == "return" )
            return RETURN;
         if ( m_string == "export" ) // directive
         {
            m_bIsDirectiveLine = true;
            return EXPORT;
         }
         if ( m_string == "import" ) // directive
         {
            m_bIsDirectiveLine = true;
            return IMPORT;
         }
         if ( m_string == "static" )
            return STATIC;
      break;

      case 7:
         if ( m_string == "forlast" )
            return FORLAST;
         if ( m_string == "default" )
            return DEFAULT;
      break;


      case 8:
         if ( m_string == "provides" )
            return PROVIDES;
         if ( m_string == "function" )
            return FUNCDECL;
         if ( m_string == "continue" )
            return CONTINUE;
         if ( m_string == "dropping" )
            return DROPPING;
         if ( m_string == "forfirst" )
            return FORFIRST;
      break;

      case 9:
         if ( m_string == "directive" )
         {
            // No assigments in directive.
            m_bIsDirectiveLine = true;
            return DIRECTIVE;
         }
         if ( m_string == "innerfunc" )
            return INNERFUNC;
         if ( m_string == "formiddle" )
            return FORMIDDLE;
      break;
   }

   return 0;
}


void SrcLexer::parsingFtd( bool b )
{
   if ( b )
   {
      m_bParsingFtd = true;
      m_mode = t_mOutscape;
   }
   else {
      m_bParsingFtd = false;
      m_mode = t_mNormal;
   }
}

void SrcLexer::resetContexts()
{
   // clear contexts
   while( m_topCtx != 0 )
   {
      Context* ctx = m_topCtx->m_prev;
      delete m_topCtx;
      m_topCtx = ctx;
   }

   // force to generate a fake eol at next loop
   m_addEol = true;
   m_bIsDirectiveLine = false;

   m_state = e_line;
   m_lineFilled = false;
   m_string = "";
}

void SrcLexer::appendStream( Stream *s )
{
   m_in = s;
   m_streams.pushBack( s );
   m_streamLines.pushBack( (uint32) m_line );
}


void SrcLexer::parseMacro()
{
   // macros are in the form
   // macro decl( params ) (content)
   // they must be passed to the compiler as
   // function decl( params ); > content; end

   int startline = m_line;

   typedef enum {
      s_decl,
      s_params,
      s_endparams,
      s_content,
      s_done
   } macro_state;

   macro_state state = s_decl;
   String sDecl;
   String sContent;
   uint32 ctx = 0;

   uint32 chr;
   while( state != s_done && m_in->get( chr ) )
   {
      if ( chr == '\n' ) {
         m_previousLine = m_line;
         m_line++;
      }

      switch(state) {
         case s_decl:
            if ( chr == '(' )
               state = s_params;
            sDecl += chr;
            break;

         case s_params:
            if ( chr == ')' )
               state = s_endparams;
            sDecl += chr;
            break;

         case s_endparams:
            if ( chr == '(' )
            {
               state = s_content;
               ctx = 1;
            }
            break;

         case s_content:
            if ( chr == '(' )
               ctx++;
            else if( chr == ')' )
            {
               ctx--;
               if ( ctx == 0 )
               {
                  state = s_done;
                  // last ) must not be included
                  break;
               }
            }

            sContent += chr;
            break;

         default:
            break;
      }
   }
   // if we're done, pass the thing to the compiler for metacompilation
   if ( s_done )
   {
      // escape \ and "
      String sContEsc;
      sContent.escape( sContEsc );

      String sFunc = "function " + sDecl + "\n>>@\"" + sContEsc + "\"\nend\n";
      m_compiler->metaCompile( sFunc, startline );
   }
   else {
      // raise an error.
      m_compiler->raiseError( e_syn_macro, sDecl, startline );
   }
}

void SrcLexer::parseMacroCall()
{
   // macros are in the form
   // \\decl( param1, param2 )
   // they must be passed to the compiler as
   // decl( "param1", param2 )

   int startline = m_line;

   typedef enum {
      s_decl,
      s_params,
      s_done
   } macro_state;

   macro_state state = s_decl;
   String sDecl;
   String sParam;
   String sFinal;
   uint32 ctx=0;

   uint32 chr;
   while( state != s_done && m_in->get( chr ) )
   {
      if ( chr == '\n' ) {
         m_previousLine = m_line;
         m_line++;
      }

      switch(state) {
         case s_decl:
            if ( chr == '(' )
            {
               state = s_params;
               ctx = 1;
            }
            sFinal += chr;
            sDecl += chr;
            break;

         case s_params:
            if ( chr == '(' )
            {
               ctx++;
               sParam += chr;
            }
            else if ( chr == ')' )
            {
               ctx--;
               if ( ctx == 0 )
               {
                  state = s_done;
                  if ( sParam.size() > 0 )
                  {
                     String temp;
                     sParam.trim();
                     sParam.escape( temp );
                     sFinal += '"';
                     sFinal += temp;
                     sFinal += '"';
                  }

                  sFinal += chr;
                  break;
               }
               else
                  sParam += chr;
            }
            else if( chr == ',' && ctx == 1 )
            {
               String temp;
               sParam.trim();
               sParam.escape( temp );
               sFinal += '"';
               sFinal += temp;
               sFinal += '"';
               sFinal += ',';
               sParam.size(0);
            }
            else
               sParam += chr;
            break;

         default:
            break;
      }
   }
   // if we're done, pass the thing to the compiler for metacompilation
   if ( s_done )
   {
      m_compiler->metaCompile( sFinal+"\n", startline );
   }
   else {
      // raise an error.
      m_compiler->raiseError( e_syn_macro_call, sDecl, startline );
   }
}


void SrcLexer::pushContext( t_contextType ct, int startLine )
{
   m_topCtx = new Context( ct, startLine, m_topCtx );
}


bool SrcLexer::popContext()
{
   if( m_topCtx == 0 )
      return false;

   Context* current = m_topCtx;
   m_topCtx = m_topCtx->m_prev;
   delete current;
   return true;
}


SrcLexer::t_contextType SrcLexer::currentContext()
{
   if( m_topCtx == 0 )
      return ct_top;

   return m_topCtx->m_ct;
}


int SrcLexer::contextStart()
{
   if( m_topCtx == 0 )
      return 0;

   return m_topCtx->m_oline;
}

bool SrcLexer::inParCtx()
{
   return m_topCtx != 0 &&
         ( m_topCtx->m_ct == ct_round || m_topCtx->m_ct == ct_square );
}

bool SrcLexer::readAhead( uint32 &chr )
{
   bool res;

   while( (res = m_in->readAhead( chr )) && chr == '\r' )
   {
      m_in->discardReadAhead( 1 );
   }

   return res;
}

}


/* end of src_lexer.cpp */