-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lexer.java
1166 lines (1074 loc) · 40 KB
/
Lexer.java
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
/* The following code was generated by JFlex 1.3.5 on 5/5/19 12:43 AM */
package fr.n7.stl.block;
import java_cup.runtime.ComplexSymbolFactory;
import java_cup.runtime.ComplexSymbolFactory.Location;
import java_cup.runtime.Symbol;
import java.lang.*;
import java.io.InputStreamReader;
/**
* This class is a scanner generated by
* <a href="http://www.jflex.de/">JFlex</a> 1.3.5
* on 5/5/19 12:43 AM from the specification file
* <tt>file:/home/freenemya/workspace/mini_java/lexer.jflex</tt>
*/
public class Lexer implements sym, java_cup.runtime.Scanner {
/** This character denotes the end of file */
final public static int YYEOF = -1;
/** initial size of the lookahead buffer */
final private static int YY_BUFFERSIZE = 16384;
/** lexical states */
final public static int CODESEG = 1;
final public static int YYINITIAL = 0;
/**
* Translates characters to character classes
*/
final private static String yycmap_packed =
"\11\15\1\3\1\2\1\0\1\3\1\1\16\15\4\0\1\3\1\22"+
"\1\11\1\0\1\14\1\30\1\32\1\13\1\33\1\34\1\10\1\26"+
"\1\17\1\27\1\6\1\7\1\4\11\5\1\20\1\16\1\24\1\23"+
"\1\25\1\21\1\0\22\14\1\62\7\14\1\37\1\12\1\40\1\0"+
"\1\14\1\0\1\60\1\64\1\41\1\51\1\50\1\52\1\63\1\61"+
"\1\56\2\14\1\57\1\55\1\43\1\42\1\47\1\14\1\53\1\44"+
"\1\45\1\54\1\65\1\66\1\67\1\46\1\14\1\35\1\31\1\36"+
"\1\0\41\15\2\0\4\14\4\0\1\14\2\0\1\15\7\0\1\14"+
"\4\0\1\14\5\0\27\14\1\0\37\14\1\0\u01ca\14\4\0\14\14"+
"\16\0\5\14\7\0\1\14\1\0\1\14\21\0\160\15\5\14\1\0"+
"\2\14\2\0\4\14\10\0\1\14\1\0\3\14\1\0\1\14\1\0"+
"\24\14\1\0\123\14\1\0\213\14\1\0\5\15\2\0\236\14\11\0"+
"\46\14\2\0\1\14\7\0\47\14\7\0\1\14\1\0\55\15\1\0"+
"\1\15\1\0\2\15\1\0\2\15\1\0\1\15\10\0\33\14\5\0"+
"\3\14\15\0\5\15\6\0\1\14\4\0\13\15\5\0\53\14\37\15"+
"\4\0\2\14\1\15\143\14\1\0\1\14\10\15\1\0\6\15\2\14"+
"\2\15\1\0\4\15\2\14\12\15\3\14\2\0\1\14\17\0\1\15"+
"\1\14\1\15\36\14\33\15\2\0\131\14\13\15\1\14\16\0\12\15"+
"\41\14\11\15\2\14\4\0\1\14\5\0\26\14\4\15\1\14\11\15"+
"\1\14\3\15\1\14\5\15\22\0\31\14\3\15\104\0\1\14\1\0"+
"\13\14\67\0\33\15\1\0\4\15\66\14\3\15\1\14\22\15\1\14"+
"\7\15\12\14\2\15\2\0\12\15\1\0\7\14\1\0\7\14\1\0"+
"\3\15\1\0\10\14\2\0\2\14\2\0\26\14\1\0\7\14\1\0"+
"\1\14\3\0\4\14\2\0\1\15\1\14\7\15\2\0\2\15\2\0"+
"\3\15\1\14\10\0\1\15\4\0\2\14\1\0\3\14\2\15\2\0"+
"\12\15\4\14\7\0\1\14\5\0\3\15\1\0\6\14\4\0\2\14"+
"\2\0\26\14\1\0\7\14\1\0\2\14\1\0\2\14\1\0\2\14"+
"\2\0\1\15\1\0\5\15\4\0\2\15\2\0\3\15\3\0\1\15"+
"\7\0\4\14\1\0\1\14\7\0\14\15\3\14\1\15\13\0\3\15"+
"\1\0\11\14\1\0\3\14\1\0\26\14\1\0\7\14\1\0\2\14"+
"\1\0\5\14\2\0\1\15\1\14\10\15\1\0\3\15\1\0\3\15"+
"\2\0\1\14\17\0\2\14\2\15\2\0\12\15\1\0\1\14\17\0"+
"\3\15\1\0\10\14\2\0\2\14\2\0\26\14\1\0\7\14\1\0"+
"\2\14\1\0\5\14\2\0\1\15\1\14\7\15\2\0\2\15\2\0"+
"\3\15\10\0\2\15\4\0\2\14\1\0\3\14\2\15\2\0\12\15"+
"\1\0\1\14\20\0\1\15\1\14\1\0\6\14\3\0\3\14\1\0"+
"\4\14\3\0\2\14\1\0\1\14\1\0\2\14\3\0\2\14\3\0"+
"\3\14\3\0\14\14\4\0\5\15\3\0\3\15\1\0\4\15\2\0"+
"\1\14\6\0\1\15\16\0\12\15\11\0\1\14\7\0\3\15\1\0"+
"\10\14\1\0\3\14\1\0\27\14\1\0\12\14\1\0\5\14\3\0"+
"\1\14\7\15\1\0\3\15\1\0\4\15\7\0\2\15\1\0\2\14"+
"\6\0\2\14\2\15\2\0\12\15\22\0\2\15\1\0\10\14\1\0"+
"\3\14\1\0\27\14\1\0\12\14\1\0\5\14\2\0\1\15\1\14"+
"\7\15\1\0\3\15\1\0\4\15\7\0\2\15\7\0\1\14\1\0"+
"\2\14\2\15\2\0\12\15\1\0\2\14\17\0\2\15\1\0\10\14"+
"\1\0\3\14\1\0\51\14\2\0\1\14\7\15\1\0\3\15\1\0"+
"\4\15\1\14\10\0\1\15\10\0\2\14\2\15\2\0\12\15\12\0"+
"\6\14\2\0\2\15\1\0\22\14\3\0\30\14\1\0\11\14\1\0"+
"\1\14\2\0\7\14\3\0\1\15\4\0\6\15\1\0\1\15\1\0"+
"\10\15\22\0\2\15\15\0\60\14\1\15\2\14\7\15\4\0\10\14"+
"\10\15\1\0\12\15\47\0\2\14\1\0\1\14\2\0\2\14\1\0"+
"\1\14\2\0\1\14\6\0\4\14\1\0\7\14\1\0\3\14\1\0"+
"\1\14\1\0\1\14\2\0\2\14\1\0\4\14\1\15\2\14\6\15"+
"\1\0\2\15\1\14\2\0\5\14\1\0\1\14\1\0\6\15\2\0"+
"\12\15\2\0\4\14\40\0\1\14\27\0\2\15\6\0\12\15\13\0"+
"\1\15\1\0\1\15\1\0\1\15\4\0\2\15\10\14\1\0\44\14"+
"\4\0\24\15\1\0\2\15\5\14\13\15\1\0\44\15\11\0\1\15"+
"\71\0\53\14\24\15\1\14\12\15\6\0\6\14\4\15\4\14\3\15"+
"\1\14\3\15\2\14\7\15\3\14\4\15\15\14\14\15\1\14\17\15"+
"\2\0\46\14\1\0\1\14\5\0\1\14\2\0\53\14\1\0\u014d\14"+
"\1\0\4\14\2\0\7\14\1\0\1\14\1\0\4\14\2\0\51\14"+
"\1\0\4\14\2\0\41\14\1\0\4\14\2\0\7\14\1\0\1\14"+
"\1\0\4\14\2\0\17\14\1\0\71\14\1\0\4\14\2\0\103\14"+
"\2\0\3\15\40\0\20\14\20\0\125\14\14\0\u026c\14\2\0\21\14"+
"\1\0\32\14\5\0\113\14\3\0\3\14\17\0\15\14\1\0\4\14"+
"\3\15\13\0\22\14\3\15\13\0\22\14\2\15\14\0\15\14\1\0"+
"\3\14\1\0\2\15\14\0\64\14\40\15\3\0\1\14\3\0\2\14"+
"\1\15\2\0\12\15\41\0\3\15\2\0\12\15\6\0\130\14\10\0"+
"\51\14\1\15\1\14\5\0\106\14\12\0\35\14\3\0\14\15\4\0"+
"\14\15\12\0\12\15\36\14\2\0\5\14\13\0\54\14\4\0\21\15"+
"\7\14\2\15\6\0\12\15\46\0\27\14\5\15\4\0\65\14\12\15"+
"\1\0\35\15\2\0\13\15\6\0\12\15\15\0\1\14\130\0\5\15"+
"\57\14\21\15\7\14\4\0\12\15\21\0\11\15\14\0\3\15\36\14"+
"\15\15\2\14\12\15\54\14\16\15\14\0\44\14\24\15\10\0\12\15"+
"\3\0\3\14\12\15\44\14\122\0\3\15\1\0\25\15\4\14\1\15"+
"\4\14\3\15\2\14\11\0\300\14\47\15\25\0\4\15\u0116\14\2\0"+
"\6\14\2\0\46\14\2\0\6\14\2\0\10\14\1\0\1\14\1\0"+
"\1\14\1\0\1\14\1\0\37\14\2\0\65\14\1\0\7\14\1\0"+
"\1\14\3\0\3\14\1\0\7\14\3\0\4\14\2\0\6\14\4\0"+
"\15\14\5\0\3\14\1\0\7\14\16\0\5\15\32\0\5\15\20\0"+
"\2\14\23\0\1\14\13\0\5\15\5\0\6\15\1\0\1\14\15\0"+
"\1\14\20\0\15\14\3\0\33\14\25\0\15\15\4\0\1\15\3\0"+
"\14\15\21\0\1\14\4\0\1\14\2\0\12\14\1\0\1\14\3\0"+
"\5\14\6\0\1\14\1\0\1\14\1\0\1\14\1\0\4\14\1\0"+
"\13\14\2\0\4\14\5\0\5\14\4\0\1\14\21\0\51\14\u0a77\0"+
"\57\14\1\0\57\14\1\0\205\14\6\0\4\14\3\15\2\14\14\0"+
"\46\14\1\0\1\14\5\0\1\14\2\0\70\14\7\0\1\14\17\0"+
"\1\15\27\14\11\0\7\14\1\0\7\14\1\0\7\14\1\0\7\14"+
"\1\0\7\14\1\0\7\14\1\0\7\14\1\0\7\14\1\0\40\15"+
"\57\0\1\14\u01d5\0\3\14\31\0\11\14\6\15\1\0\5\14\2\0"+
"\5\14\4\0\126\14\2\0\2\15\2\0\3\14\1\0\132\14\1\0"+
"\4\14\5\0\51\14\3\0\136\14\21\0\33\14\65\0\20\14\u0200\0"+
"\u19b6\14\112\0\u51cd\14\63\0\u048d\14\103\0\56\14\2\0\u010d\14\3\0"+
"\20\14\12\15\2\14\24\0\57\14\1\15\4\0\12\15\1\0\31\14"+
"\7\0\1\15\120\14\2\15\45\0\11\14\2\0\147\14\2\0\4\14"+
"\1\0\4\14\14\0\13\14\115\0\12\14\1\15\3\14\1\15\4\14"+
"\1\15\27\14\5\15\20\0\1\14\7\0\64\14\14\0\2\15\62\14"+
"\21\15\13\0\12\15\6\0\22\15\6\14\3\0\1\14\4\0\12\15"+
"\34\14\10\15\2\0\27\14\15\15\14\0\35\14\3\0\4\15\57\14"+
"\16\15\16\0\1\14\12\15\46\0\51\14\16\15\11\0\3\14\1\15"+
"\10\14\2\15\2\0\12\15\6\0\27\14\3\0\1\14\1\15\4\0"+
"\60\14\1\15\1\14\3\15\2\14\2\15\5\14\2\15\1\14\1\15"+
"\1\14\30\0\3\14\2\0\13\14\5\15\2\0\3\14\2\15\12\0"+
"\6\14\2\0\6\14\2\0\6\14\11\0\7\14\1\0\7\14\221\0"+
"\43\14\10\15\1\0\2\15\2\0\12\15\6\0\u2ba4\14\14\0\27\14"+
"\4\0\61\14\u2104\0\u016e\14\2\0\152\14\46\0\7\14\14\0\5\14"+
"\5\0\1\14\1\15\12\14\1\0\15\14\1\0\5\14\1\0\1\14"+
"\1\0\2\14\1\0\2\14\1\0\154\14\41\0\u016b\14\22\0\100\14"+
"\2\0\66\14\50\0\15\14\3\0\20\15\20\0\7\15\14\0\2\14"+
"\30\0\3\14\31\0\1\14\6\0\5\14\1\0\207\14\2\0\1\15"+
"\4\0\1\14\13\0\12\15\7\0\32\14\4\0\1\14\1\0\32\14"+
"\13\0\131\14\3\0\6\14\2\0\6\14\2\0\6\14\2\0\3\14"+
"\3\0\2\14\3\0\2\14\22\0\3\15\4\0";
/**
* Translates characters to character classes
*/
final private static char [] yycmap = yy_unpack_cmap(yycmap_packed);
/**
* Translates a state to a row index in the transition table
*/
final private static int yy_rowMap [] = {
0, 56, 112, 168, 112, 224, 280, 112, 336, 112,
392, 448, 504, 112, 112, 112, 112, 560, 616, 672,
728, 784, 840, 112, 896, 952, 112, 112, 112, 112,
112, 112, 1008, 1064, 1120, 1176, 1232, 1288, 1344, 1400,
1456, 1512, 1568, 1624, 1680, 1736, 1792, 1848, 1904, 392,
112, 1960, 2016, 2072, 112, 112, 112, 112, 112, 112,
112, 112, 2128, 2184, 2240, 2296, 2352, 2408, 2464, 2520,
2576, 2632, 2688, 2744, 2800, 2856, 2912, 2968, 3024, 3080,
3136, 3192, 504, 3248, 3304, 3360, 3416, 3472, 3528, 112,
3584, 3640, 392, 112, 3696, 3752, 3808, 504, 3864, 504,
3920, 3976, 4032, 4088, 4144, 4200, 4256, 4312, 4368, 4424,
504, 4480, 4536, 4592, 4648, 4704, 4760, 4816, 4872, 4928,
4984, 5040, 5096, 5152, 504, 504, 5208, 5264, 5320, 504,
5376, 5432, 5488, 5544, 504, 504, 5600, 5656, 5712, 5768,
5824, 5880, 5936, 5992, 6048, 6104, 504, 6160, 504, 504,
6216, 6272, 6328, 6384, 504, 6440, 6496, 6552, 504, 504,
504, 6608, 6664, 6720, 6776, 6832, 6888, 504, 504, 504,
6944, 7000, 7056, 504, 7112, 504, 7168, 7224, 7280, 504,
7336, 504, 7392, 504, 504, 7448, 7504, 7560, 504, 7616,
7672, 7728, 504, 504, 504, 7784, 504
};
/**
* The packed transition table of the DFA (part 0)
*/
final private static String yy_packed0 =
"\1\3\1\4\2\5\1\6\1\7\1\10\1\11\1\12"+
"\1\13\1\3\1\14\1\15\1\3\1\16\1\17\1\20"+
"\1\21\1\22\1\23\1\24\1\25\1\26\1\27\1\30"+
"\1\31\1\32\1\33\1\34\1\35\1\36\1\37\1\40"+
"\1\41\1\15\1\42\1\43\1\44\1\15\1\45\1\46"+
"\1\15\1\47\1\50\2\15\1\51\1\15\1\52\1\15"+
"\1\53\1\15\1\54\1\55\1\56\1\15\70\3\72\0"+
"\1\5\73\0\1\57\65\0\2\7\1\57\70\0\1\60"+
"\1\61\57\0\11\62\1\63\1\64\55\62\12\65\1\66"+
"\55\65\4\0\2\15\6\0\2\15\23\0\27\15\23\0"+
"\1\67\67\0\1\70\67\0\1\71\67\0\1\72\72\0"+
"\1\73\70\0\1\74\71\0\1\75\70\0\1\76\41\0"+
"\2\15\6\0\2\15\23\0\1\15\1\77\14\15\1\100"+
"\1\15\1\101\6\15\4\0\2\15\6\0\2\15\23\0"+
"\7\15\1\102\3\15\1\103\13\15\4\0\2\15\6\0"+
"\2\15\23\0\2\15\1\104\1\15\1\105\22\15\4\0"+
"\2\15\6\0\2\15\23\0\5\15\1\106\4\15\1\107"+
"\14\15\4\0\2\15\6\0\2\15\23\0\12\15\1\110"+
"\1\111\13\15\4\0\2\15\6\0\2\15\23\0\2\15"+
"\1\112\13\15\1\113\7\15\1\114\4\0\2\15\6\0"+
"\2\15\23\0\3\15\1\115\11\15\1\116\1\117\1\120"+
"\7\15\4\0\2\15\6\0\2\15\23\0\7\15\1\121"+
"\17\15\4\0\2\15\6\0\2\15\23\0\2\15\1\122"+
"\6\15\1\123\2\15\1\124\12\15\4\0\2\15\6\0"+
"\2\15\23\0\23\15\1\125\3\15\4\0\2\15\6\0"+
"\2\15\23\0\4\15\1\126\22\15\4\0\2\15\6\0"+
"\2\15\23\0\1\15\1\127\25\15\4\0\2\15\6\0"+
"\2\15\23\0\1\15\1\130\25\15\4\0\2\15\6\0"+
"\2\15\23\0\20\15\1\131\6\15\4\0\1\132\1\133"+
"\62\0\1\60\1\4\1\5\65\60\10\61\1\134\57\61"+
"\11\62\1\135\1\64\55\62\13\0\1\136\66\0\1\65"+
"\61\0\2\15\6\0\2\15\23\0\2\15\1\137\24\15"+
"\4\0\2\15\6\0\2\15\23\0\17\15\1\140\7\15"+
"\4\0\2\15\6\0\2\15\23\0\17\15\1\141\7\15"+
"\4\0\2\15\6\0\2\15\23\0\25\15\1\142\1\15"+
"\4\0\2\15\6\0\2\15\23\0\16\15\1\143\10\15"+
"\4\0\2\15\6\0\2\15\23\0\10\15\1\144\16\15"+
"\4\0\2\15\6\0\2\15\23\0\12\15\1\145\4\15"+
"\1\146\7\15\4\0\2\15\6\0\2\15\23\0\6\15"+
"\1\147\20\15\4\0\2\15\6\0\2\15\23\0\13\15"+
"\1\150\13\15\4\0\2\15\6\0\2\15\23\0\1\15"+
"\1\151\13\15\1\152\11\15\4\0\2\15\6\0\2\15"+
"\23\0\23\15\1\153\3\15\4\0\2\15\6\0\2\15"+
"\23\0\13\15\1\154\13\15\4\0\2\15\6\0\2\15"+
"\23\0\3\15\1\155\23\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\156\22\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\157\22\15\4\0\2\15\6\0\2\15"+
"\23\0\2\15\1\160\24\15\4\0\2\15\6\0\2\15"+
"\23\0\1\15\1\161\25\15\4\0\2\15\6\0\2\15"+
"\23\0\16\15\1\162\10\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\163\22\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\164\22\15\4\0\2\15\6\0\2\15"+
"\23\0\6\15\1\165\20\15\4\0\2\15\6\0\2\15"+
"\23\0\3\15\1\166\23\15\4\0\2\15\6\0\2\15"+
"\23\0\12\15\1\167\14\15\4\0\2\15\6\0\2\15"+
"\23\0\1\15\1\170\25\15\4\0\2\15\6\0\2\15"+
"\23\0\15\15\1\171\11\15\4\0\2\15\6\0\2\15"+
"\23\0\15\15\1\172\11\15\4\0\2\133\62\0\7\61"+
"\1\5\1\134\57\61\4\0\2\15\6\0\2\15\23\0"+
"\3\15\1\173\23\15\4\0\2\15\6\0\2\15\23\0"+
"\3\15\1\174\23\15\4\0\2\15\6\0\2\15\23\0"+
"\12\15\1\175\14\15\4\0\2\15\6\0\2\15\23\0"+
"\16\15\1\176\10\15\4\0\2\15\6\0\2\15\23\0"+
"\13\15\1\177\13\15\4\0\2\15\6\0\2\15\23\0"+
"\4\15\1\200\22\15\4\0\2\15\6\0\2\15\23\0"+
"\7\15\1\201\17\15\4\0\2\15\6\0\2\15\23\0"+
"\7\15\1\202\17\15\4\0\2\15\6\0\2\15\23\0"+
"\4\15\1\203\22\15\4\0\2\15\6\0\2\15\23\0"+
"\2\15\1\204\21\15\1\205\2\15\4\0\2\15\6\0"+
"\2\15\23\0\16\15\1\206\10\15\4\0\2\15\6\0"+
"\2\15\23\0\14\15\1\207\12\15\4\0\2\15\6\0"+
"\2\15\23\0\7\15\1\210\17\15\4\0\2\15\6\0"+
"\2\15\23\0\7\15\1\211\17\15\4\0\2\15\6\0"+
"\2\15\23\0\17\15\1\212\7\15\4\0\2\15\6\0"+
"\2\15\23\0\17\15\1\213\7\15\4\0\2\15\6\0"+
"\2\15\23\0\3\15\1\214\23\15\4\0\2\15\6\0"+
"\2\15\23\0\13\15\1\215\13\15\4\0\2\15\6\0"+
"\2\15\23\0\7\15\1\216\17\15\4\0\2\15\6\0"+
"\2\15\23\0\16\15\1\217\10\15\4\0\2\15\6\0"+
"\2\15\23\0\4\15\1\220\22\15\4\0\2\15\6\0"+
"\2\15\23\0\15\15\1\221\11\15\4\0\2\15\6\0"+
"\2\15\23\0\16\15\1\222\10\15\4\0\2\15\6\0"+
"\2\15\23\0\10\15\1\223\16\15\4\0\2\15\6\0"+
"\2\15\23\0\16\15\1\224\10\15\4\0\2\15\6\0"+
"\2\15\23\0\4\15\1\225\22\15\4\0\2\15\6\0"+
"\2\15\23\0\3\15\1\226\23\15\4\0\2\15\6\0"+
"\2\15\23\0\1\227\26\15\4\0\2\15\6\0\2\15"+
"\23\0\15\15\1\230\11\15\4\0\2\15\6\0\2\15"+
"\23\0\10\15\1\231\16\15\4\0\2\15\6\0\2\15"+
"\23\0\7\15\1\232\17\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\233\22\15\4\0\2\15\6\0\2\15"+
"\23\0\17\15\1\234\7\15\4\0\2\15\6\0\2\15"+
"\23\0\15\15\1\235\11\15\4\0\2\15\6\0\2\15"+
"\23\0\2\15\1\236\24\15\4\0\2\15\6\0\2\15"+
"\23\0\16\15\1\237\10\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\240\22\15\4\0\2\15\6\0\2\15"+
"\23\0\7\15\1\241\17\15\4\0\2\15\6\0\2\15"+
"\23\0\12\15\1\242\14\15\4\0\2\15\6\0\2\15"+
"\23\0\12\15\1\243\14\15\4\0\2\15\6\0\2\15"+
"\23\0\7\15\1\244\17\15\4\0\2\15\6\0\2\15"+
"\23\0\12\15\1\245\14\15\4\0\2\15\6\0\2\15"+
"\23\0\2\15\1\246\24\15\4\0\2\15\6\0\2\15"+
"\23\0\7\15\1\247\17\15\4\0\2\15\6\0\2\15"+
"\23\0\7\15\1\250\17\15\4\0\2\15\6\0\2\15"+
"\23\0\4\15\1\251\22\15\4\0\2\15\6\0\2\15"+
"\23\0\1\252\26\15\4\0\2\15\6\0\2\15\23\0"+
"\7\15\1\253\17\15\4\0\2\15\6\0\2\15\23\0"+
"\1\254\26\15\4\0\2\15\6\0\2\15\23\0\4\15"+
"\1\255\22\15\4\0\2\15\6\0\2\15\23\0\1\256"+
"\26\15\4\0\2\15\6\0\2\15\23\0\10\15\1\257"+
"\16\15\4\0\2\15\6\0\2\15\23\0\2\15\1\260"+
"\24\15\4\0\2\15\6\0\2\15\23\0\11\15\1\261"+
"\15\15\4\0\2\15\6\0\2\15\23\0\14\15\1\262"+
"\12\15\4\0\2\15\6\0\2\15\23\0\17\15\1\263"+
"\7\15\4\0\2\15\6\0\2\15\23\0\22\15\1\264"+
"\4\15\4\0\2\15\6\0\2\15\23\0\17\15\1\265"+
"\7\15\4\0\2\15\6\0\2\15\23\0\11\15\1\266"+
"\15\15\4\0\2\15\6\0\2\15\23\0\4\15\1\267"+
"\22\15\4\0\2\15\6\0\2\15\23\0\7\15\1\270"+
"\17\15\4\0\2\15\6\0\2\15\23\0\3\15\1\271"+
"\23\15\4\0\2\15\6\0\2\15\23\0\17\15\1\272"+
"\7\15\4\0\2\15\6\0\2\15\23\0\7\15\1\273"+
"\17\15\4\0\2\15\6\0\2\15\23\0\1\274\26\15"+
"\4\0\2\15\6\0\2\15\23\0\2\15\1\275\24\15"+
"\4\0\2\15\6\0\2\15\23\0\7\15\1\276\17\15"+
"\4\0\2\15\6\0\2\15\23\0\1\277\26\15\4\0"+
"\2\15\6\0\2\15\23\0\2\15\1\300\24\15\4\0"+
"\2\15\6\0\2\15\23\0\4\15\1\301\22\15\4\0"+
"\2\15\6\0\2\15\23\0\10\15\1\302\16\15\4\0"+
"\2\15\6\0\2\15\23\0\7\15\1\303\17\15\4\0"+
"\2\15\6\0\2\15\23\0\4\15\1\304\22\15\4\0"+
"\2\15\6\0\2\15\23\0\3\15\1\305\23\15";
/**
* The transition table of the DFA
*/
final private static int yytrans [] = yy_unpack();
/* error codes */
final private static int YY_UNKNOWN_ERROR = 0;
final private static int YY_ILLEGAL_STATE = 1;
final private static int YY_NO_MATCH = 2;
final private static int YY_PUSHBACK_2BIG = 3;
/* error messages for the codes above */
final private static String YY_ERROR_MSG[] = {
"Unkown internal scanner error",
"Internal error: unknown state",
"Error: could not match input",
"Error: pushback value was too large"
};
/**
* YY_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
*/
private final static byte YY_ATTRIBUTE[] = {
0, 0, 9, 1, 9, 1, 1, 9, 1, 9, 1, 1, 1, 9, 9, 9,
9, 1, 1, 1, 1, 1, 1, 9, 1, 1, 9, 9, 9, 9, 9, 9,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
0, 0, 9, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 1, 0, 1, 9, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
};
/** the input device */
private java.io.Reader yy_reader;
/** the current state of the DFA */
private int yy_state;
/** the current lexical state */
private int yy_lexical_state = YYINITIAL;
/** this buffer contains the current text to be matched and is
the source of the yytext() string */
private char yy_buffer[] = new char[YY_BUFFERSIZE];
/** the textposition at the last accepting state */
private int yy_markedPos;
/** the textposition at the last state to be included in yytext */
private int yy_pushbackPos;
/** the current text position in the buffer */
private int yy_currentPos;
/** startRead marks the beginning of the yytext() string in the buffer */
private int yy_startRead;
/** endRead marks the last character in the buffer, that has been read
from input */
private int yy_endRead;
/** number of newlines encountered up to the start of the matched text */
private int yyline;
/** the number of characters up to the start of the matched text */
private int yychar;
/**
* the number of characters from the last newline up to the start of the
* matched text
*/
private int yycolumn;
/**
* yy_atBOL == true <=> the scanner is currently at the beginning of a line
*/
private boolean yy_atBOL = true;
/** yy_atEOF == true <=> the scanner is at the EOF */
private boolean yy_atEOF;
/** denotes if the user-EOF-code has already been executed */
private boolean yy_eof_done;
/* user code: */
public Lexer(ComplexSymbolFactory _symbolFactory, java.io.InputStream _inputStream){
this(_inputStream);
this.symbolFactory = _symbolFactory;
}
public Lexer(ComplexSymbolFactory _symbolFactory, java.io.Reader _reader){
this(_reader);
this.symbolFactory = _symbolFactory;
}
private StringBuffer sb;
private ComplexSymbolFactory symbolFactory;
private int csline,cscolumn;
public Symbol symbol(String name, int code){
return symbolFactory.newSymbol(name, code,
new Location(yyline+1,yycolumn+1, yychar), // -yylength()
new Location(yyline+1,yycolumn+yylength(), yychar+yylength())
);
}
public Symbol symbol(String name, int code, String lexem){
return symbolFactory.newSymbol(name, code,
new Location(yyline+1, yycolumn +1, yychar),
new Location(yyline+1,yycolumn+yylength(), yychar+yylength()), lexem);
}
protected void emit_warning(String message){
System.out.println("scanner warning: " + message + " at : 2 "+
(yyline+1) + " " + (yycolumn+1) + " " + yychar);
}
protected void emit_error(String message){
System.out.println("scanner error: " + message + " at : 2" +
(yyline+1) + " " + (yycolumn+1) + " " + yychar);
}
/**
* Creates a new scanner
* There is also a java.io.InputStream version of this constructor.
*
* @param in the java.io.Reader to read input from.
*/
public Lexer(java.io.Reader in) {
this.yy_reader = in;
}
/**
* Creates a new scanner.
* There is also java.io.Reader version of this constructor.
*
* @param in the java.io.Inputstream to read input from.
*/
public Lexer(java.io.InputStream in) {
this(new java.io.InputStreamReader(in));
}
/**
* Unpacks the split, compressed DFA transition table.
*
* @return the unpacked transition table
*/
private static int [] yy_unpack() {
int [] trans = new int[7840];
int offset = 0;
offset = yy_unpack(yy_packed0, offset, trans);
return trans;
}
/**
* Unpacks the compressed DFA transition table.
*
* @param packed the packed transition table
* @return the index of the last entry
*/
private static int yy_unpack(String packed, int offset, int [] trans) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
value--;
do trans[j++] = value; while (--count > 0);
}
return j;
}
/**
* Unpacks the compressed character translation table.
*
* @param packed the packed character translation table
* @return the unpacked character translation table
*/
private static char [] yy_unpack_cmap(String packed) {
char [] map = new char[0x10000];
int i = 0; /* index in packed string */
int j = 0; /* index in unpacked array */
while (i < 2254) {
int count = packed.charAt(i++);
char value = packed.charAt(i++);
do map[j++] = value; while (--count > 0);
}
return map;
}
/**
* Refills the input buffer.
*
* @return <code>false</code>, iff there was new input.
*
* @exception IOException if any I/O-Error occurs
*/
private boolean yy_refill() throws java.io.IOException {
/* first: make room (if you can) */
if (yy_startRead > 0) {
System.arraycopy(yy_buffer, yy_startRead,
yy_buffer, 0,
yy_endRead-yy_startRead);
/* translate stored positions */
yy_endRead-= yy_startRead;
yy_currentPos-= yy_startRead;
yy_markedPos-= yy_startRead;
yy_pushbackPos-= yy_startRead;
yy_startRead = 0;
}
/* is the buffer big enough? */
if (yy_currentPos >= yy_buffer.length) {
/* if not: blow it up */
char newBuffer[] = new char[yy_currentPos*2];
System.arraycopy(yy_buffer, 0, newBuffer, 0, yy_buffer.length);
yy_buffer = newBuffer;
}
/* finally: fill the buffer with new input */
int numRead = yy_reader.read(yy_buffer, yy_endRead,
yy_buffer.length-yy_endRead);
if (numRead < 0) {
return true;
}
else {
yy_endRead+= numRead;
return false;
}
}
/**
* Closes the input stream.
*/
final public void yyclose() throws java.io.IOException {
yy_atEOF = true; /* indicate end of file */
yy_endRead = yy_startRead; /* invalidate buffer */
if (yy_reader != null)
yy_reader.close();
}
/**
* Closes the current stream, and resets the
* scanner to read from a new input stream.
*
* All internal variables are reset, the old input stream
* <b>cannot</b> be reused (internal buffer is discarded and lost).
* Lexical state is set to <tt>YY_INITIAL</tt>.
*
* @param reader the new input stream
*/
final public void yyreset(java.io.Reader reader) throws java.io.IOException {
yyclose();
yy_reader = reader;
yy_atBOL = true;
yy_atEOF = false;
yy_endRead = yy_startRead = 0;
yy_currentPos = yy_markedPos = yy_pushbackPos = 0;
yyline = yychar = yycolumn = 0;
yy_lexical_state = YYINITIAL;
}
/**
* Returns the current lexical state.
*/
final public int yystate() {
return yy_lexical_state;
}
/**
* Enters a new lexical state
*
* @param newState the new lexical state
*/
final public void yybegin(int newState) {
yy_lexical_state = newState;
}
/**
* Returns the text matched by the current regular expression.
*/
final public String yytext() {
return new String( yy_buffer, yy_startRead, yy_markedPos-yy_startRead );
}
/**
* Returns the character at position <tt>pos</tt> from the
* matched text.
*
* It is equivalent to yytext().charAt(pos), but faster
*
* @param pos the position of the character to fetch.
* A value from 0 to yylength()-1.
*
* @return the character at position pos
*/
final public char yycharat(int pos) {
return yy_buffer[yy_startRead+pos];
}
/**
* Returns the length of the matched text region.
*/
final public int yylength() {
return yy_markedPos-yy_startRead;
}
/**
* Reports an error that occured while scanning.
*
* In a wellformed scanner (no or only correct usage of
* yypushback(int) and a match-all fallback rule) this method
* will only be called with things that "Can't Possibly Happen".
* If this method is called, something is seriously wrong
* (e.g. a JFlex bug producing a faulty scanner etc.).
*
* Usual syntax/scanner level error handling should be done
* in error fallback rules.
*
* @param errorCode the code of the errormessage to display
*/
private void yy_ScanError(int errorCode) {
String message;
try {
message = YY_ERROR_MSG[errorCode];
}
catch (ArrayIndexOutOfBoundsException e) {
message = YY_ERROR_MSG[YY_UNKNOWN_ERROR];
}
throw new Error(message);
}
/**
* Pushes the specified amount of characters back into the input stream.
*
* They will be read again by then next call of the scanning method
*
* @param number the number of characters to be read again.
* This number must not be greater than yylength()!
*/
private void yypushback(int number) {
if ( number > yylength() )
yy_ScanError(YY_PUSHBACK_2BIG);
yy_markedPos -= number;
}
/**
* Contains user EOF-code, which will be executed exactly once,
* when the end of file is reached
*/
private void yy_do_eof() throws java.io.IOException {
if (!yy_eof_done) {
yy_eof_done = true;
yyclose();
}
}
/**
* Resumes scanning until the next regular expression is matched,
* the end of input is encountered or an I/O-Error occurs.
*
* @return the next token
* @exception IOException if any I/O-Error occurs
*/
public java_cup.runtime.Symbol next_token() throws java.io.IOException {
int yy_input;
int yy_action;
// cached fields:
int yy_currentPos_l;
int yy_startRead_l;
int yy_markedPos_l;
int yy_endRead_l = yy_endRead;
char [] yy_buffer_l = yy_buffer;
char [] yycmap_l = yycmap;
int [] yytrans_l = yytrans;
int [] yy_rowMap_l = yy_rowMap;
byte [] yy_attr_l = YY_ATTRIBUTE;
while (true) {
yy_markedPos_l = yy_markedPos;
yychar+= yy_markedPos_l-yy_startRead;
boolean yy_r = false;
for (yy_currentPos_l = yy_startRead; yy_currentPos_l < yy_markedPos_l;
yy_currentPos_l++) {
switch (yy_buffer_l[yy_currentPos_l]) {
case '\u000B':
case '\u000C':
case '\u0085':
case '\u2028':
case '\u2029':
yyline++;
yycolumn = 0;
yy_r = false;
break;
case '\r':
yyline++;
yycolumn = 0;
yy_r = true;
break;
case '\n':
if (yy_r)
yy_r = false;
else {
yyline++;
yycolumn = 0;
}
break;
default:
yy_r = false;
yycolumn++;
}
}
if (yy_r) {
// peek one character ahead if it is \n (if we have counted one line too much)
boolean yy_peek;
if (yy_markedPos_l < yy_endRead_l)
yy_peek = yy_buffer_l[yy_markedPos_l] == '\n';
else if (yy_atEOF)
yy_peek = false;
else {
boolean eof = yy_refill();
yy_markedPos_l = yy_markedPos;
yy_buffer_l = yy_buffer;
if (eof)
yy_peek = false;
else
yy_peek = yy_buffer_l[yy_markedPos_l] == '\n';
}
if (yy_peek) yyline--;
}
yy_action = -1;
yy_startRead_l = yy_currentPos_l = yy_currentPos =
yy_startRead = yy_markedPos_l;
yy_state = yy_lexical_state;
yy_forAction: {
while (true) {
if (yy_currentPos_l < yy_endRead_l)
yy_input = yy_buffer_l[yy_currentPos_l++];
else if (yy_atEOF) {
yy_input = YYEOF;
break yy_forAction;
}
else {
// store back cached positions
yy_currentPos = yy_currentPos_l;
yy_markedPos = yy_markedPos_l;
boolean eof = yy_refill();
// get translated positions and possibly new buffer
yy_currentPos_l = yy_currentPos;
yy_markedPos_l = yy_markedPos;
yy_buffer_l = yy_buffer;
yy_endRead_l = yy_endRead;
if (eof) {
yy_input = YYEOF;
break yy_forAction;
}
else {
yy_input = yy_buffer_l[yy_currentPos_l++];
}
}
int yy_next = yytrans_l[ yy_rowMap_l[yy_state] + yycmap_l[yy_input] ];
if (yy_next == -1) break yy_forAction;
yy_state = yy_next;
int yy_attributes = yy_attr_l[yy_state];
if ( (yy_attributes & 1) == 1 ) {
yy_action = yy_state;
yy_markedPos_l = yy_currentPos_l;
if ( (yy_attributes & 8) == 8 ) break yy_forAction;
}
}
}
// store back cached position
yy_markedPos = yy_markedPos_l;
switch (yy_action) {
case 196:
{ return symbolFactory.newSymbol("Implements", UL_Implements); }
case 198: break;
case 9:
{ return symbolFactory.newSymbol("Asterisque", UL_Asterisque); }
case 199: break;
case 179:
{ return symbolFactory.newSymbol("Type Chaîne", UL_Type_Chaine); }
case 200: break;
case 134:
{ return symbolFactory.newSymbol("Enumération", UL_Enumeration); }
case 201: break;
case 115:
{ return symbolFactory.newSymbol("Type Entier", UL_Type_Entier); }
case 202: break;
case 15:
{ return symbolFactory.newSymbol("Deux Points", UL_Deux_Points); }
case 203: break;
case 25:
{ return symbolFactory.newSymbol("Esperluette", UL_Esperluette); }
case 204: break;
case 55:
{ return symbolFactory.newSymbol("Double Egal", UL_Double_Egal); }
case 205: break;
case 58:
{ return symbolFactory.newSymbol("Double Plus", UL_Double_Plus); }
case 206: break;
case 3:
case 4:
{ }
case 207: break;
case 5:
case 6:
{ return symbolFactory.newSymbol("Nombre Entier", UL_Nombre_Entier, yytext()); }
case 208: break;
case 50:
case 92:
{ return symbolFactory.newSymbol("Chaine de caractères", UL_Chaine, yytext()); }
case 209: break;
case 61:
{ return symbolFactory.newSymbol("Double Esperluette", UL_Double_Esperluette); }
case 210: break;
case 158:
{ return symbolFactory.newSymbol("Final", UL_Final); }
case 211: break;
case 149:
{ return symbolFactory.newSymbol("Class", UL_Class); }
case 212: break;
case 135:
{ return symbolFactory.newSymbol("Sinon", UL_Sinon); }
case 213: break;
case 22:
{ return symbolFactory.newSymbol("Moins", UL_Moins); }
case 214: break;
case 7:
{ return symbolFactory.newSymbol("Point", UL_Point); }
case 215: break;
case 125:
{ return symbolFactory.newSymbol("Nul", UL_Nul); }
case 216: break;
case 168:
{ return symbolFactory.newSymbol("Enregistrement", UL_Enregistrement); }
case 217: break;
case 93:
{ return symbolFactory.newSymbol("Caractère", UL_Caractere, yytext()); }
case 218: break;
case 124:
{ return symbolFactory.newSymbol("Type Caractère", UL_Type_Caractere); }
case 219: break;
case 57:
{ return symbolFactory.newSymbol("Supérieur Egal", UL_Superieur_Egal); }
case 220: break;
case 192:
{ return symbolFactory.newSymbol("Abstract", UL_Abstract); }
case 221: break;
case 167:
{ return symbolFactory.newSymbol("Tant que", UL_Tant_Que); }
case 222: break;
case 154:
{ return symbolFactory.newSymbol("Afficher", UL_Afficher); }
case 223: break;
case 148:
{ return symbolFactory.newSymbol("Définition Constante", UL_Definition_Constante); }
case 224: break;
case 13:
{ return symbolFactory.newSymbol("Point Virgule", UL_Point_Virgule); }
case 225: break;
case 175:
{ return symbolFactory.newSymbol("Retour", UL_Retour); }
case 226: break;
case 173:
{ return symbolFactory.newSymbol("Public", UL_Public); }
case 227: break;
case 169:
{ return symbolFactory.newSymbol("Static", UL_Static); }
case 228: break;
case 99:
{ return symbolFactory.newSymbol("Second", UL_Second); }
case 229: break;
case 194:
{ return symbolFactory.newSymbol("Interface", UL_Interface); }
case 230: break;
case 193:
{ return symbolFactory.newSymbol("Protected", UL_Protected); }
case 231: break;
case 146:
{ return symbolFactory.newSymbol("Type Vide", UL_Type_Vide); }
case 232: break;
case 89:
case 90:
{ return symbolFactory.newSymbol("Nombre Flottant", UL_Nombre_Flottant, yytext()); }
case 233: break;
case 20:
{ return symbolFactory.newSymbol("Supérieur", UL_Superieur); }
case 234: break;
case 19:
{ return symbolFactory.newSymbol("Inférieur", UL_Inferieur); }
case 235: break;
case 23:
{ return symbolFactory.newSymbol("Pour Cent", UL_Pour_Cent); }
case 236: break;
case 181:
{ return symbolFactory.newSymbol("Définition Type", UL_Definition_Type); }
case 237: break;
case 12:
case 32:
case 33:
case 34:
case 35:
case 36:
case 37:
case 38:
case 39:
case 40:
case 41:
case 42:
case 43:
case 44:
case 45:
case 62:
case 63:
case 64:
case 65:
case 66:
case 67:
case 68:
case 69:
case 70:
case 71:
case 72:
case 73:
case 74:
case 75:
case 76:
case 77:
case 78:
case 79:
case 80:
case 81:
case 83:
case 84:
case 85:
case 86:
case 87:
case 88:
case 94:
case 95:
case 96:
case 98:
case 100:
case 101: