package pfff

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file lexer_ml.ml

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
# 1 "lexer_ml.mll"
 
(* Yoann Padioleau
 *
 * Copyright (C) 2010, 2012 Facebook
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation, with the
 * special exception on linking described in file license.txt.
 * 
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the file
 * license.txt for more details.
 *)
open Common 

module Ast = Ast_ml
module Flag = Flag_parsing

open Parser_ml

(*****************************************************************************)
(* Prelude *)
(*****************************************************************************)

(* src: http://caml.inria.fr/pub/docs/manual-ocaml/lex.html *)

(*****************************************************************************)
(* Helpers *)
(*****************************************************************************)
(* Parse_ml.tokens will catch this exception and print the position
 * of the offending token using the current state of lexbuf, so
 * no need to add position information here.
 *)
exception Lexical of string

let tok     lexbuf  = 
  Lexing.lexeme lexbuf
let tokinfo lexbuf  = 
  Parse_info.tokinfo_str_pos (Lexing.lexeme lexbuf) (Lexing.lexeme_start lexbuf)

let error s =
  if !Flag.exn_when_lexical_error
  then raise (Lexical (s))
  else 
    if !Flag.verbose_lexing
    then pr2_once ("LEXER: " ^ s)
    else ()

(* ---------------------------------------------------------------------- *)
(* Keywords *)
(* ---------------------------------------------------------------------- *)
(* src: http://caml.inria.fr/pub/docs/manual-ocaml/lex.html *)
let keyword_table = Common.hash_of_list [

  "fun", (fun ii -> Tfun ii);
  "function", (fun ii -> Tfunction ii);
  "rec", (fun ii -> Trec ii);

  "type", (fun ii -> Ttype ii);
  "of", (fun ii -> Tof ii);

  "if", (fun ii -> Tif ii);
  "then", (fun ii -> Tthen ii);
  "else", (fun ii -> Telse ii);

  "match", (fun ii -> Tmatch ii);
  "with", (fun ii -> Twith ii);
  "when", (fun ii -> Twhen ii);

  "let", (fun ii -> Tlet ii);
  "in", (fun ii -> Tin ii);

  "as", (fun ii -> Tas ii);

  "try", (fun ii -> Ttry ii);
  "exception", (fun ii -> Texception ii);

  "begin", (fun ii -> Tbegin ii);
  "end", (fun ii -> Tend ii);

  "for", (fun ii -> Tfor ii);
  "do", (fun ii -> Tdo ii);
  "done", (fun ii -> Tdone ii);
  "downto", (fun ii -> Tdownto ii);
  "while", (fun ii -> Twhile ii);
  "to", (fun ii -> Tto ii);

  "val", (fun ii -> Tval ii);
  "external", (fun ii -> Texternal ii);

  "true", (fun ii -> Ttrue ii);
  "false", (fun ii -> Tfalse ii);

  "module", (fun ii -> Tmodule ii);
  "open", (fun ii -> Topen ii);
  "functor", (fun ii -> Tfunctor ii);
  "include", (fun ii -> Tinclude ii);
  "sig", (fun ii -> Tsig ii);
  "struct", (fun ii -> Tstruct ii);

  "class", (fun ii -> Tclass ii);
  "new", (fun ii -> Tnew ii);
  "inherit", (fun ii -> Tinherit ii);
  "constraint", (fun ii -> Tconstraint ii);
  "initializer", (fun ii -> Tinitializer ii);
  "method", (fun ii -> Tmethod ii);
  "object", (fun ii -> Tobject ii);
  "private", (fun ii -> Tprivate ii);
  "virtual", (fun ii -> Tvirtual ii);

  "lazy", (fun ii -> Tlazy ii);
  "mutable", (fun ii -> Tmutable ii);
  "assert", (fun ii -> Tassert ii);

   (* used when doing mutually recursive definitions *)
  "and", (fun ii -> Tand ii);

  (* was INFIXOP3 and INFIXOP4 in original grammar apparently *)
  "or", (fun ii -> Tor ii);
  "mod", (fun ii -> Tmod ii);
  "lor", (fun ii -> Tlor ii);
  "lsl", (fun ii -> Tlsl ii);
  "lsr", (fun ii -> Tlsr ii);
  "lxor", (fun ii -> Tlxor ii);
  "asr", (fun ii -> Tasr ii);
  "land", (fun ii -> Tland ii);

  (* "ref" is not a keyword ? it's actually a function returning
   * a {mutable contents = ...}
   *)
]


# 138 "lexer_ml.ml"
let __ocaml_lex_tables = {
  Lexing.lex_base =
   "\000\000\180\255\181\255\186\255\081\000\105\000\192\000\020\001\
    \110\001\145\001\229\001\063\002\033\000\081\000\082\000\219\255\
    \155\002\221\255\060\000\190\002\225\002\004\003\054\003\089\003\
    \124\003\161\003\238\255\103\000\240\255\081\000\242\255\198\003\
    \248\003\017\004\102\000\136\000\255\255\253\255\070\004\109\004\
    \154\000\193\255\038\000\045\000\044\000\055\000\159\000\166\001\
    \088\002\144\000\163\000\251\255\160\000\076\000\075\000\170\000\
    \176\000\167\000\179\000\066\000\080\000\084\000\071\000\079\000\
    \077\000\071\000\185\000\189\000\186\000\152\001\194\000\101\000\
    \092\000\108\000\202\000\105\000\111\000\210\000\185\255\233\255\
    \177\000\151\000\231\255\235\255\237\255\154\000\198\255\196\255\
    \232\255\236\255\234\255\144\004\179\004\214\004\249\004\028\005\
    \065\005\100\005\180\000\117\005\182\255\128\005\176\001\183\000\
    \184\000\183\255\155\002\185\000\151\005\184\255\216\255\204\255\
    \206\255\214\255\212\255\206\005\040\006\189\255\070\006\190\255\
    \026\003\222\003\180\000\184\000\145\006\168\006\064\002\016\001\
    \034\004\190\002\196\000\252\255\027\000\146\001\255\255\253\255\
    \193\000\252\255\253\255\211\000\101\000\255\255\212\000\250\255\
    \213\000\208\000\210\000\255\255\254\255";
  Lexing.lex_backtrk =
   "\255\255\255\255\255\255\255\255\067\000\067\000\064\000\063\000\
    \061\000\048\000\046\000\044\000\042\000\040\000\038\000\255\255\
    \035\000\255\255\033\000\031\000\054\000\027\000\026\000\025\000\
    \047\000\028\000\255\255\016\000\255\255\014\000\255\255\011\000\
    \030\000\061\000\012\000\001\000\255\255\255\255\061\000\003\000\
    \003\000\255\255\255\255\255\255\255\255\255\255\255\255\004\000\
    \255\255\255\255\004\000\255\255\005\000\255\255\255\255\255\255\
    \255\255\006\000\006\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\007\000\007\000\008\000\255\255\
    \255\255\255\255\009\000\255\255\255\255\010\000\255\255\255\255\
    \058\000\055\000\255\255\255\255\255\255\056\000\255\255\255\255\
    \255\255\255\255\255\255\053\000\052\000\037\000\050\000\060\000\
    \029\000\032\000\255\255\255\255\255\255\073\000\073\000\073\000\
    \071\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\045\000\255\255\255\255\255\255\
    \255\255\068\000\255\255\255\255\255\255\067\000\067\000\067\000\
    \068\000\255\255\255\255\255\255\255\255\001\000\255\255\255\255\
    \255\255\255\255\255\255\001\000\002\000\255\255\255\255\255\255\
    \002\000\004\000\003\000\255\255\255\255";
  Lexing.lex_default =
   "\001\000\000\000\000\000\000\000\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\000\
    \255\255\000\000\098\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\000\000\255\255\000\000\255\255\000\000\255\255\
    \255\255\255\255\255\255\255\255\000\000\000\000\255\255\040\000\
    \040\000\000\000\255\255\255\255\255\255\255\255\052\000\255\255\
    \255\255\049\000\255\255\000\000\052\000\255\255\255\255\255\255\
    \057\000\057\000\057\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\068\000\068\000\068\000\070\000\255\255\
    \255\255\255\255\074\000\255\255\255\255\077\000\000\000\000\000\
    \255\255\255\255\000\000\000\000\000\000\255\255\000\000\000\000\
    \000\000\000\000\000\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\100\000\000\000\255\255\255\255\255\255\
    \255\255\000\000\255\255\255\255\255\255\000\000\000\000\000\000\
    \000\000\000\000\000\000\255\255\255\255\000\000\255\255\000\000\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\133\000\000\000\135\000\133\000\000\000\000\000\
    \139\000\000\000\000\000\139\000\255\255\000\000\144\000\000\000\
    \144\000\255\255\255\255\000\000\000\000";
  Lexing.lex_trans =
   "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\035\000\036\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \035\000\020\000\003\000\032\000\008\000\008\000\019\000\018\000\
    \034\000\030\000\016\000\023\000\015\000\022\000\014\000\033\000\
    \005\000\004\000\004\000\004\000\004\000\004\000\004\000\004\000\
    \004\000\004\000\013\000\012\000\021\000\031\000\025\000\011\000\
    \008\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\027\000\114\000\026\000\008\000\010\000\
    \017\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\029\000\024\000\028\000\009\000\121\000\
    \110\000\004\000\004\000\004\000\004\000\004\000\004\000\004\000\
    \004\000\004\000\004\000\113\000\080\000\079\000\112\000\111\000\
    \037\000\035\000\072\000\070\000\071\000\059\000\120\000\121\000\
    \099\000\004\000\004\000\004\000\004\000\004\000\004\000\004\000\
    \004\000\004\000\004\000\084\000\255\255\082\000\053\000\081\000\
    \035\000\255\255\255\255\122\000\050\000\054\000\120\000\055\000\
    \004\000\255\255\051\000\056\000\060\000\061\000\120\000\062\000\
    \123\000\058\000\255\255\063\000\058\000\255\255\064\000\065\000\
    \066\000\124\000\067\000\050\000\255\255\049\000\069\000\255\255\
    \004\000\075\000\056\000\122\000\255\255\078\000\120\000\073\000\
    \058\000\074\000\076\000\058\000\255\255\077\000\087\000\085\000\
    \123\000\067\000\086\000\109\000\255\255\069\000\105\000\105\000\
    \105\000\124\000\141\000\083\000\127\000\127\000\134\000\006\000\
    \126\000\126\000\126\000\126\000\126\000\126\000\126\000\126\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\148\000\147\000\145\000\255\255\146\000\255\255\
    \002\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\255\255\000\000\000\000\000\000\006\000\
    \132\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\007\000\255\255\140\000\138\000\000\000\
    \127\000\127\000\000\000\000\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\000\000\255\255\
    \255\255\000\000\000\000\000\000\000\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\127\000\
    \000\000\000\000\000\000\007\000\000\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\008\000\
    \255\255\000\000\008\000\008\000\008\000\000\000\000\000\000\000\
    \008\000\008\000\255\255\008\000\008\000\008\000\000\000\255\255\
    \255\255\069\000\255\255\000\000\000\000\000\000\000\000\255\255\
    \008\000\000\000\008\000\008\000\008\000\008\000\008\000\050\000\
    \255\255\000\000\095\000\255\255\255\255\095\000\095\000\095\000\
    \069\000\000\000\255\255\095\000\095\000\255\255\095\000\095\000\
    \095\000\137\000\255\255\000\000\131\000\000\000\050\000\000\000\
    \049\000\000\000\255\255\095\000\008\000\095\000\095\000\095\000\
    \095\000\095\000\255\255\255\255\143\000\255\255\047\000\047\000\
    \047\000\047\000\047\000\047\000\047\000\047\000\047\000\047\000\
    \106\000\106\000\106\000\106\000\106\000\106\000\106\000\106\000\
    \106\000\106\000\008\000\000\000\008\000\000\000\255\255\095\000\
    \118\000\000\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\007\000\095\000\000\000\095\000\
    \000\000\000\000\000\000\000\000\000\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \000\000\000\000\000\000\000\000\007\000\000\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \095\000\048\000\000\000\095\000\095\000\095\000\000\000\000\000\
    \000\000\095\000\095\000\000\000\095\000\095\000\095\000\000\000\
    \126\000\126\000\126\000\126\000\126\000\126\000\126\000\126\000\
    \048\000\095\000\000\000\095\000\095\000\095\000\116\000\095\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \047\000\047\000\047\000\047\000\047\000\047\000\047\000\047\000\
    \047\000\047\000\255\255\000\000\000\000\000\000\000\000\000\000\
    \255\255\000\000\000\000\000\000\000\000\095\000\115\000\126\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\000\000\095\000\008\000\095\000\000\000\008\000\
    \008\000\008\000\000\000\000\000\000\000\008\000\008\000\000\000\
    \008\000\008\000\008\000\107\000\107\000\107\000\107\000\107\000\
    \107\000\107\000\107\000\107\000\107\000\008\000\000\000\008\000\
    \008\000\008\000\008\000\008\000\000\000\000\000\000\000\008\000\
    \000\000\000\000\008\000\008\000\097\000\000\000\000\000\000\000\
    \008\000\008\000\000\000\008\000\008\000\008\000\128\000\128\000\
    \128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
    \008\000\008\000\008\000\008\000\008\000\008\000\008\000\000\000\
    \000\000\000\000\095\000\000\000\000\000\095\000\095\000\095\000\
    \000\000\000\000\000\000\095\000\095\000\000\000\095\000\095\000\
    \095\000\000\000\000\000\000\000\000\000\000\000\000\000\008\000\
    \000\000\008\000\000\000\095\000\008\000\095\000\096\000\095\000\
    \095\000\095\000\000\000\000\000\000\000\008\000\000\000\000\000\
    \008\000\008\000\008\000\000\000\000\000\000\000\008\000\008\000\
    \000\000\094\000\008\000\008\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\008\000\000\000\008\000\000\000\008\000\095\000\
    \008\000\008\000\008\000\008\000\008\000\129\000\000\000\129\000\
    \000\000\000\000\128\000\128\000\128\000\128\000\128\000\128\000\
    \128\000\128\000\128\000\128\000\000\000\000\000\000\000\008\000\
    \000\000\000\000\008\000\008\000\008\000\095\000\000\000\095\000\
    \008\000\008\000\008\000\008\000\092\000\008\000\005\000\004\000\
    \004\000\004\000\004\000\004\000\004\000\004\000\004\000\004\000\
    \008\000\000\000\008\000\008\000\093\000\008\000\008\000\000\000\
    \000\000\000\000\008\000\000\000\000\000\008\000\008\000\008\000\
    \008\000\000\000\008\000\008\000\008\000\000\000\008\000\091\000\
    \008\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\008\000\008\000\008\000\008\000\008\000\
    \008\000\008\000\000\000\000\000\000\000\008\000\000\000\000\000\
    \008\000\008\000\008\000\000\000\000\000\000\000\008\000\008\000\
    \000\000\008\000\008\000\008\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\008\000\000\000\008\000\000\000\008\000\008\000\
    \008\000\008\000\008\000\008\000\008\000\000\000\000\000\000\000\
    \000\000\000\000\008\000\000\000\000\000\008\000\008\000\008\000\
    \000\000\000\000\000\000\008\000\008\000\000\000\008\000\008\000\
    \008\000\000\000\000\000\000\000\000\000\008\000\000\000\008\000\
    \000\000\090\000\008\000\008\000\000\000\008\000\008\000\008\000\
    \008\000\008\000\000\000\000\000\000\000\000\000\000\000\008\000\
    \000\000\000\000\008\000\008\000\008\000\000\000\000\000\000\000\
    \008\000\008\000\000\000\008\000\008\000\008\000\000\000\000\000\
    \008\000\000\000\008\000\000\000\000\000\000\000\089\000\008\000\
    \008\000\048\000\008\000\008\000\008\000\008\000\008\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\121\000\121\000\
    \121\000\121\000\121\000\121\000\121\000\121\000\121\000\121\000\
    \048\000\046\000\000\000\041\000\000\000\008\000\088\000\008\000\
    \000\000\000\000\000\000\120\000\008\000\000\000\000\000\000\000\
    \047\000\047\000\047\000\047\000\047\000\047\000\047\000\047\000\
    \047\000\047\000\008\000\000\000\000\000\008\000\008\000\008\000\
    \000\000\000\000\000\000\008\000\008\000\121\000\008\000\008\000\
    \038\000\000\000\008\000\120\000\008\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\008\000\000\000\008\000\008\000\008\000\
    \008\000\008\000\128\000\128\000\128\000\128\000\128\000\128\000\
    \128\000\128\000\128\000\128\000\044\000\042\000\000\000\000\000\
    \000\000\043\000\000\000\000\000\045\000\000\000\000\000\008\000\
    \000\000\000\000\008\000\008\000\008\000\000\000\000\000\008\000\
    \008\000\008\000\000\000\008\000\008\000\039\000\000\000\255\255\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \008\000\128\000\008\000\008\000\008\000\008\000\008\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\008\000\039\000\008\000\
    \000\000\039\000\039\000\039\000\000\000\000\000\000\000\039\000\
    \039\000\000\000\039\000\039\000\039\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\008\000\000\000\000\000\039\000\
    \000\000\039\000\039\000\039\000\039\000\039\000\000\000\000\000\
    \000\000\008\000\000\000\000\000\008\000\008\000\008\000\000\000\
    \000\000\000\000\008\000\008\000\000\000\008\000\008\000\008\000\
    \000\000\000\000\008\000\000\000\008\000\000\000\000\000\000\000\
    \000\000\000\000\008\000\039\000\008\000\008\000\008\000\008\000\
    \008\000\000\000\000\000\000\000\008\000\000\000\000\000\008\000\
    \008\000\008\000\000\000\000\000\000\000\008\000\008\000\000\000\
    \008\000\008\000\008\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\039\000\000\000\039\000\000\000\008\000\008\000\008\000\
    \008\000\008\000\008\000\008\000\000\000\000\000\000\000\008\000\
    \000\000\000\000\008\000\008\000\008\000\000\000\000\000\000\000\
    \008\000\008\000\000\000\008\000\008\000\008\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\008\000\000\000\008\000\000\000\
    \008\000\008\000\008\000\008\000\008\000\008\000\008\000\000\000\
    \000\000\000\000\008\000\000\000\000\000\008\000\008\000\008\000\
    \000\000\000\000\000\000\008\000\008\000\000\000\008\000\008\000\
    \008\000\000\000\000\000\000\000\000\000\000\000\000\000\008\000\
    \000\000\008\000\000\000\008\000\008\000\008\000\008\000\008\000\
    \008\000\008\000\000\000\000\000\000\000\095\000\000\000\000\000\
    \095\000\095\000\095\000\000\000\000\000\000\000\095\000\095\000\
    \000\000\095\000\095\000\095\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\008\000\000\000\008\000\000\000\095\000\008\000\
    \095\000\095\000\095\000\095\000\095\000\000\000\000\000\000\000\
    \000\000\000\000\095\000\000\000\000\000\095\000\095\000\095\000\
    \000\000\000\000\000\000\095\000\095\000\255\255\095\000\095\000\
    \095\000\000\000\000\000\000\000\000\000\008\000\000\000\008\000\
    \000\000\000\000\095\000\095\000\000\000\095\000\095\000\095\000\
    \095\000\095\000\000\000\000\000\000\000\008\000\000\000\000\000\
    \008\000\008\000\008\000\000\000\000\000\000\000\008\000\008\000\
    \000\000\008\000\008\000\008\000\000\000\000\000\000\000\103\000\
    \095\000\000\000\095\000\000\000\104\000\000\000\008\000\095\000\
    \008\000\008\000\008\000\008\000\008\000\102\000\102\000\102\000\
    \102\000\102\000\102\000\102\000\102\000\102\000\102\000\000\000\
    \108\000\108\000\108\000\108\000\108\000\108\000\108\000\108\000\
    \108\000\108\000\000\000\000\000\000\000\095\000\000\000\095\000\
    \000\000\108\000\008\000\000\000\000\000\000\000\108\000\107\000\
    \107\000\107\000\107\000\107\000\107\000\107\000\107\000\107\000\
    \107\000\103\000\000\000\000\000\000\000\000\000\000\000\103\000\
    \107\000\000\000\000\000\000\000\000\000\107\000\000\000\000\000\
    \008\000\108\000\008\000\103\000\000\000\000\000\108\000\103\000\
    \000\000\103\000\000\000\000\000\000\000\101\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\115\000\000\000\000\000\
    \107\000\000\000\000\000\000\000\000\000\107\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \117\000\000\000\000\000\000\000\000\000\000\000\000\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\000\000\000\000\000\000\000\000\115\000\000\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\095\000\000\000\000\000\095\000\095\000\095\000\000\000\
    \000\000\000\000\095\000\095\000\000\000\095\000\095\000\095\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\095\000\000\000\095\000\095\000\095\000\095\000\
    \095\000\000\000\000\000\000\000\000\000\118\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\255\255\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \119\000\000\000\000\000\000\000\000\000\000\000\095\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\000\000\000\000\000\000\095\000\118\000\095\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\125\000\125\000\125\000\125\000\125\000\125\000\125\000\
    \125\000\125\000\125\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\125\000\000\000\000\000\000\000\000\000\125\000\
    \125\000\125\000\125\000\125\000\125\000\125\000\125\000\125\000\
    \125\000\125\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\125\000\000\000\000\000\000\000\000\000\125\000\000\000\
    \000\000\000\000\125\000\000\000\000\000\000\000\000\000\125\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\125\000\
    \000\000\125\000\000\000\000\000\000\000\000\000\125\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000";
  Lexing.lex_check =
   "\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\000\000\000\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\012\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
    \000\000\000\000\000\000\000\000\000\000\000\000\000\000\004\000\
    \014\000\004\000\004\000\004\000\004\000\004\000\004\000\004\000\
    \004\000\004\000\004\000\013\000\027\000\029\000\013\000\013\000\
    \034\000\035\000\042\000\043\000\042\000\044\000\004\000\005\000\
    \018\000\005\000\005\000\005\000\005\000\005\000\005\000\005\000\
    \005\000\005\000\005\000\027\000\040\000\027\000\045\000\027\000\
    \035\000\046\000\052\000\005\000\050\000\053\000\005\000\054\000\
    \004\000\057\000\049\000\055\000\059\000\060\000\004\000\061\000\
    \005\000\056\000\056\000\062\000\058\000\058\000\063\000\064\000\
    \065\000\005\000\066\000\050\000\068\000\050\000\067\000\067\000\
    \005\000\071\000\055\000\005\000\070\000\029\000\005\000\072\000\
    \056\000\073\000\075\000\058\000\074\000\076\000\080\000\081\000\
    \005\000\066\000\085\000\098\000\077\000\067\000\103\000\104\000\
    \107\000\005\000\140\000\027\000\122\000\122\000\130\000\006\000\
    \123\000\123\000\123\000\123\000\123\000\123\000\123\000\123\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\145\000\146\000\142\000\144\000\142\000\144\000\
    \000\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\132\000\255\255\255\255\255\255\006\000\
    \130\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\006\000\006\000\006\000\006\000\006\000\
    \006\000\006\000\006\000\007\000\018\000\136\000\136\000\255\255\
    \127\000\127\000\255\255\255\255\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\255\255\139\000\
    \139\000\255\255\255\255\255\255\255\255\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\127\000\
    \255\255\255\255\255\255\007\000\255\255\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\007\000\
    \007\000\007\000\007\000\007\000\007\000\007\000\007\000\008\000\
    \049\000\255\255\008\000\008\000\008\000\255\255\255\255\255\255\
    \008\000\008\000\040\000\008\000\008\000\008\000\255\255\046\000\
    \052\000\069\000\069\000\255\255\255\255\255\255\255\255\057\000\
    \008\000\255\255\008\000\008\000\008\000\008\000\008\000\047\000\
    \056\000\255\255\009\000\058\000\133\000\009\000\009\000\009\000\
    \069\000\255\255\068\000\009\000\009\000\067\000\009\000\009\000\
    \009\000\136\000\070\000\255\255\130\000\255\255\047\000\255\255\
    \047\000\255\255\074\000\009\000\008\000\009\000\009\000\009\000\
    \009\000\009\000\077\000\139\000\142\000\144\000\047\000\047\000\
    \047\000\047\000\047\000\047\000\047\000\047\000\047\000\047\000\
    \102\000\102\000\102\000\102\000\102\000\102\000\102\000\102\000\
    \102\000\102\000\008\000\255\255\008\000\255\255\133\000\009\000\
    \009\000\255\255\009\000\009\000\009\000\009\000\009\000\009\000\
    \009\000\009\000\009\000\009\000\009\000\009\000\009\000\009\000\
    \009\000\009\000\009\000\009\000\009\000\009\000\009\000\009\000\
    \009\000\009\000\009\000\009\000\010\000\009\000\255\255\009\000\
    \255\255\255\255\255\255\255\255\255\255\010\000\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \255\255\255\255\255\255\255\255\010\000\255\255\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \010\000\010\000\010\000\010\000\010\000\010\000\010\000\010\000\
    \011\000\048\000\255\255\011\000\011\000\011\000\255\255\255\255\
    \255\255\011\000\011\000\255\255\011\000\011\000\011\000\255\255\
    \126\000\126\000\126\000\126\000\126\000\126\000\126\000\126\000\
    \048\000\011\000\255\255\011\000\011\000\011\000\011\000\011\000\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \048\000\048\000\048\000\048\000\048\000\048\000\048\000\048\000\
    \048\000\048\000\133\000\255\255\255\255\255\255\255\255\255\255\
    \069\000\255\255\255\255\255\255\255\255\011\000\011\000\126\000\
    \011\000\011\000\011\000\011\000\011\000\011\000\011\000\011\000\
    \011\000\011\000\011\000\011\000\011\000\011\000\011\000\011\000\
    \011\000\011\000\011\000\011\000\011\000\011\000\011\000\011\000\
    \011\000\011\000\255\255\011\000\016\000\011\000\255\255\016\000\
    \016\000\016\000\255\255\255\255\255\255\016\000\016\000\255\255\
    \016\000\016\000\016\000\106\000\106\000\106\000\106\000\106\000\
    \106\000\106\000\106\000\106\000\106\000\016\000\255\255\016\000\
    \016\000\016\000\016\000\016\000\255\255\255\255\255\255\019\000\
    \255\255\255\255\019\000\019\000\019\000\255\255\255\255\255\255\
    \019\000\019\000\255\255\019\000\019\000\019\000\129\000\129\000\
    \129\000\129\000\129\000\129\000\129\000\129\000\129\000\129\000\
    \019\000\016\000\019\000\019\000\019\000\019\000\019\000\255\255\
    \255\255\255\255\020\000\255\255\255\255\020\000\020\000\020\000\
    \255\255\255\255\255\255\020\000\020\000\255\255\020\000\020\000\
    \020\000\255\255\255\255\255\255\255\255\255\255\255\255\016\000\
    \255\255\016\000\255\255\020\000\019\000\020\000\020\000\020\000\
    \020\000\020\000\255\255\255\255\255\255\021\000\255\255\255\255\
    \021\000\021\000\021\000\255\255\255\255\255\255\021\000\021\000\
    \255\255\021\000\021\000\021\000\255\255\255\255\255\255\255\255\
    \255\255\255\255\019\000\255\255\019\000\255\255\021\000\020\000\
    \021\000\021\000\021\000\021\000\021\000\120\000\255\255\120\000\
    \255\255\255\255\120\000\120\000\120\000\120\000\120\000\120\000\
    \120\000\120\000\120\000\120\000\255\255\255\255\255\255\022\000\
    \255\255\255\255\022\000\022\000\022\000\020\000\255\255\020\000\
    \022\000\022\000\021\000\022\000\022\000\022\000\022\000\022\000\
    \022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\
    \022\000\255\255\022\000\022\000\022\000\022\000\022\000\255\255\
    \255\255\255\255\023\000\255\255\255\255\023\000\023\000\023\000\
    \021\000\255\255\021\000\023\000\023\000\255\255\023\000\023\000\
    \023\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\023\000\022\000\023\000\023\000\023\000\
    \023\000\023\000\255\255\255\255\255\255\024\000\255\255\255\255\
    \024\000\024\000\024\000\255\255\255\255\255\255\024\000\024\000\
    \255\255\024\000\024\000\024\000\255\255\255\255\255\255\255\255\
    \255\255\255\255\022\000\255\255\022\000\255\255\024\000\023\000\
    \024\000\024\000\024\000\024\000\024\000\255\255\255\255\255\255\
    \255\255\255\255\025\000\255\255\255\255\025\000\025\000\025\000\
    \255\255\255\255\255\255\025\000\025\000\255\255\025\000\025\000\
    \025\000\255\255\255\255\255\255\255\255\023\000\255\255\023\000\
    \255\255\024\000\024\000\025\000\255\255\025\000\025\000\025\000\
    \025\000\025\000\255\255\255\255\255\255\255\255\255\255\031\000\
    \255\255\255\255\031\000\031\000\031\000\255\255\255\255\255\255\
    \031\000\031\000\255\255\031\000\031\000\031\000\255\255\255\255\
    \024\000\255\255\024\000\255\255\255\255\255\255\025\000\025\000\
    \031\000\032\000\031\000\031\000\031\000\031\000\031\000\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\121\000\121\000\
    \121\000\121\000\121\000\121\000\121\000\121\000\121\000\121\000\
    \032\000\032\000\255\255\032\000\255\255\025\000\025\000\025\000\
    \255\255\255\255\255\255\121\000\031\000\255\255\255\255\255\255\
    \032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\
    \032\000\032\000\033\000\255\255\255\255\033\000\033\000\033\000\
    \255\255\255\255\255\255\033\000\033\000\121\000\033\000\033\000\
    \033\000\255\255\031\000\121\000\031\000\255\255\255\255\255\255\
    \255\255\255\255\255\255\033\000\255\255\033\000\033\000\033\000\
    \033\000\033\000\128\000\128\000\128\000\128\000\128\000\128\000\
    \128\000\128\000\128\000\128\000\032\000\032\000\255\255\255\255\
    \255\255\032\000\255\255\255\255\032\000\255\255\255\255\038\000\
    \255\255\255\255\038\000\038\000\038\000\255\255\255\255\033\000\
    \038\000\038\000\255\255\038\000\038\000\038\000\255\255\039\000\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \038\000\128\000\038\000\038\000\038\000\038\000\038\000\255\255\
    \255\255\255\255\255\255\255\255\255\255\033\000\039\000\033\000\
    \255\255\039\000\039\000\039\000\255\255\255\255\255\255\039\000\
    \039\000\255\255\039\000\039\000\039\000\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\038\000\255\255\255\255\039\000\
    \255\255\039\000\039\000\039\000\039\000\039\000\255\255\255\255\
    \255\255\091\000\255\255\255\255\091\000\091\000\091\000\255\255\
    \255\255\255\255\091\000\091\000\255\255\091\000\091\000\091\000\
    \255\255\255\255\038\000\255\255\038\000\255\255\255\255\255\255\
    \255\255\255\255\091\000\039\000\091\000\091\000\091\000\091\000\
    \091\000\255\255\255\255\255\255\092\000\255\255\255\255\092\000\
    \092\000\092\000\255\255\255\255\255\255\092\000\092\000\255\255\
    \092\000\092\000\092\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\039\000\255\255\039\000\255\255\092\000\091\000\092\000\
    \092\000\092\000\092\000\092\000\255\255\255\255\255\255\093\000\
    \255\255\255\255\093\000\093\000\093\000\255\255\255\255\255\255\
    \093\000\093\000\255\255\093\000\093\000\093\000\255\255\255\255\
    \255\255\255\255\255\255\255\255\091\000\255\255\091\000\255\255\
    \093\000\092\000\093\000\093\000\093\000\093\000\093\000\255\255\
    \255\255\255\255\094\000\255\255\255\255\094\000\094\000\094\000\
    \255\255\255\255\255\255\094\000\094\000\255\255\094\000\094\000\
    \094\000\255\255\255\255\255\255\255\255\255\255\255\255\092\000\
    \255\255\092\000\255\255\094\000\093\000\094\000\094\000\094\000\
    \094\000\094\000\255\255\255\255\255\255\095\000\255\255\255\255\
    \095\000\095\000\095\000\255\255\255\255\255\255\095\000\095\000\
    \255\255\095\000\095\000\095\000\255\255\255\255\255\255\255\255\
    \255\255\255\255\093\000\255\255\093\000\255\255\095\000\094\000\
    \095\000\095\000\095\000\095\000\095\000\255\255\255\255\255\255\
    \255\255\255\255\096\000\255\255\255\255\096\000\096\000\096\000\
    \255\255\255\255\255\255\096\000\096\000\039\000\096\000\096\000\
    \096\000\255\255\255\255\255\255\255\255\094\000\255\255\094\000\
    \255\255\255\255\095\000\096\000\255\255\096\000\096\000\096\000\
    \096\000\096\000\255\255\255\255\255\255\097\000\255\255\255\255\
    \097\000\097\000\097\000\255\255\255\255\255\255\097\000\097\000\
    \255\255\097\000\097\000\097\000\255\255\255\255\255\255\099\000\
    \095\000\255\255\095\000\255\255\099\000\255\255\097\000\096\000\
    \097\000\097\000\097\000\097\000\097\000\099\000\099\000\099\000\
    \099\000\099\000\099\000\099\000\099\000\099\000\099\000\255\255\
    \101\000\101\000\101\000\101\000\101\000\101\000\101\000\101\000\
    \101\000\101\000\255\255\255\255\255\255\096\000\255\255\096\000\
    \255\255\101\000\097\000\255\255\255\255\255\255\101\000\108\000\
    \108\000\108\000\108\000\108\000\108\000\108\000\108\000\108\000\
    \108\000\099\000\255\255\255\255\255\255\255\255\255\255\099\000\
    \108\000\255\255\255\255\255\255\255\255\108\000\255\255\255\255\
    \097\000\101\000\097\000\099\000\255\255\255\255\101\000\099\000\
    \255\255\099\000\255\255\255\255\255\255\099\000\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\115\000\255\255\255\255\
    \108\000\255\255\255\255\255\255\255\255\108\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\255\255\255\255\255\255\255\255\255\255\255\255\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\255\255\255\255\255\255\255\255\115\000\255\255\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\115\000\115\000\115\000\115\000\115\000\115\000\115\000\
    \115\000\116\000\255\255\255\255\116\000\116\000\116\000\255\255\
    \255\255\255\255\116\000\116\000\255\255\116\000\116\000\116\000\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\116\000\255\255\116\000\116\000\116\000\116\000\
    \116\000\255\255\255\255\255\255\255\255\118\000\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\099\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\255\255\255\255\255\255\255\255\255\255\116\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\255\255\255\255\255\255\116\000\118\000\116\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\118\000\118\000\118\000\118\000\118\000\118\000\118\000\
    \118\000\124\000\124\000\124\000\124\000\124\000\124\000\124\000\
    \124\000\124\000\124\000\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\124\000\255\255\255\255\255\255\255\255\124\000\
    \125\000\125\000\125\000\125\000\125\000\125\000\125\000\125\000\
    \125\000\125\000\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\125\000\255\255\255\255\255\255\255\255\125\000\255\255\
    \255\255\255\255\124\000\255\255\255\255\255\255\255\255\124\000\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\125\000\
    \255\255\125\000\255\255\255\255\255\255\255\255\125\000\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
    \255\255";
  Lexing.lex_base_code =
   "";
  Lexing.lex_backtrk_code =
   "";
  Lexing.lex_default_code =
   "";
  Lexing.lex_trans_code =
   "";
  Lexing.lex_check_code =
   "";
  Lexing.lex_code =
   "";
}

let rec token lexbuf =
   __ocaml_lex_token_rec lexbuf 0
and __ocaml_lex_token_rec lexbuf __ocaml_lex_state =
  match Lexing.engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
      | 0 ->
# 176 "lexer_ml.mll"
            ( TCommentNewline (tokinfo lexbuf) )
# 715 "lexer_ml.ml"

  | 1 ->
# 177 "lexer_ml.mll"
           ( TCommentSpace (tokinfo lexbuf) )
# 720 "lexer_ml.ml"

  | 2 ->
# 178 "lexer_ml.mll"
         ( 
      let info = tokinfo lexbuf in 
      let com = comment lexbuf in
      TComment(info |> Parse_info.tok_add_s com)
    )
# 729 "lexer_ml.ml"

  | 3 ->
# 185 "lexer_ml.mll"
                    ( TComment (tokinfo lexbuf) )
# 734 "lexer_ml.ml"

  | 4 ->
# 188 "lexer_ml.mll"
      ( TCommentMisc (tokinfo lexbuf) )
# 739 "lexer_ml.ml"

  | 5 ->
# 194 "lexer_ml.mll"
      ( TSharpDirective (tokinfo lexbuf) )
# 744 "lexer_ml.ml"

  | 6 ->
# 198 "lexer_ml.mll"
      ( TSharpDirective (tokinfo lexbuf) )
# 749 "lexer_ml.ml"

  | 7 ->
# 200 "lexer_ml.mll"
      ( TSharpDirective (tokinfo lexbuf) )
# 754 "lexer_ml.ml"

  | 8 ->
# 203 "lexer_ml.mll"
                    ( TCommentMisc (tokinfo lexbuf) )
# 759 "lexer_ml.ml"

  | 9 ->
# 204 "lexer_ml.mll"
                      ( TCommentMisc (tokinfo lexbuf) )
# 764 "lexer_ml.ml"

  | 10 ->
# 205 "lexer_ml.mll"
                       ( TCommentMisc (tokinfo lexbuf) )
# 769 "lexer_ml.ml"

  | 11 ->
# 217 "lexer_ml.mll"
         ( TEq (tokinfo lexbuf) )
# 774 "lexer_ml.ml"

  | 12 ->
# 219 "lexer_ml.mll"
        ( TOParen(tokinfo lexbuf) )
# 779 "lexer_ml.ml"

  | 13 ->
# 219 "lexer_ml.mll"
                                           ( TCParen(tokinfo lexbuf) )
# 784 "lexer_ml.ml"

  | 14 ->
# 220 "lexer_ml.mll"
        ( TOBrace(tokinfo lexbuf) )
# 789 "lexer_ml.ml"

  | 15 ->
# 220 "lexer_ml.mll"
                                           ( TCBrace(tokinfo lexbuf) )
# 794 "lexer_ml.ml"

  | 16 ->
# 221 "lexer_ml.mll"
        ( TOBracket(tokinfo lexbuf) )
# 799 "lexer_ml.ml"

  | 17 ->
# 221 "lexer_ml.mll"
                                             ( TCBracket(tokinfo lexbuf) )
# 804 "lexer_ml.ml"

  | 18 ->
# 222 "lexer_ml.mll"
         ( TOBracketLess(tokinfo lexbuf) )
# 809 "lexer_ml.ml"

  | 19 ->
# 222 "lexer_ml.mll"
                                                   ( TGreaterCBracket(tokinfo lexbuf) )
# 814 "lexer_ml.ml"

  | 20 ->
# 223 "lexer_ml.mll"
         ( TOBracketPipe(tokinfo lexbuf) )
# 819 "lexer_ml.ml"

  | 21 ->
# 223 "lexer_ml.mll"
                                                   ( TPipeCBracket(tokinfo lexbuf) )
# 824 "lexer_ml.ml"

  | 22 ->
# 224 "lexer_ml.mll"
         ( TOBraceLess(tokinfo lexbuf) )
# 829 "lexer_ml.ml"

  | 23 ->
# 224 "lexer_ml.mll"
                                                 ( TGreaterCBrace(tokinfo lexbuf) )
# 834 "lexer_ml.ml"

  | 24 ->
# 226 "lexer_ml.mll"
         ( TOBracketGreater(tokinfo lexbuf) )
# 839 "lexer_ml.ml"

  | 25 ->
# 228 "lexer_ml.mll"
        ( TPlus(tokinfo lexbuf) )
# 844 "lexer_ml.ml"

  | 26 ->
# 228 "lexer_ml.mll"
                                         ( TMinus(tokinfo lexbuf) )
# 849 "lexer_ml.ml"

  | 27 ->
# 229 "lexer_ml.mll"
        ( TLess(tokinfo lexbuf) )
# 854 "lexer_ml.ml"

  | 28 ->
# 229 "lexer_ml.mll"
                                         ( TGreater(tokinfo lexbuf) )
# 859 "lexer_ml.ml"

  | 29 ->
# 231 "lexer_ml.mll"
         ( TBangEq(tokinfo lexbuf) (* INFIXOP0 *) )
# 864 "lexer_ml.ml"

  | 30 ->
# 233 "lexer_ml.mll"
        ( TSharp(tokinfo lexbuf) )
# 869 "lexer_ml.ml"

  | 31 ->
# 234 "lexer_ml.mll"
        ( TAnd(tokinfo lexbuf) )
# 874 "lexer_ml.ml"

  | 32 ->
# 235 "lexer_ml.mll"
         ( TAndAnd(tokinfo lexbuf) )
# 879 "lexer_ml.ml"

  | 33 ->
# 238 "lexer_ml.mll"
        ( TQuote(tokinfo lexbuf) )
# 884 "lexer_ml.ml"

  | 34 ->
# 240 "lexer_ml.mll"
        ( TBackQuote(tokinfo lexbuf) )
# 889 "lexer_ml.ml"

  | 35 ->
# 242 "lexer_ml.mll"
        ( TStar(tokinfo lexbuf) )
# 894 "lexer_ml.ml"

  | 36 ->
# 243 "lexer_ml.mll"
        ( TComma(tokinfo lexbuf) )
# 899 "lexer_ml.ml"

  | 37 ->
# 244 "lexer_ml.mll"
         ( TArrow(tokinfo lexbuf) )
# 904 "lexer_ml.ml"

  | 38 ->
# 245 "lexer_ml.mll"
        ( TDot(tokinfo lexbuf) )
# 909 "lexer_ml.ml"

  | 39 ->
# 246 "lexer_ml.mll"
         ( TDotDot(tokinfo lexbuf) )
# 914 "lexer_ml.ml"

  | 40 ->
# 247 "lexer_ml.mll"
        ( TColon(tokinfo lexbuf) )
# 919 "lexer_ml.ml"

  | 41 ->
# 248 "lexer_ml.mll"
         ( TColonColon(tokinfo lexbuf) )
# 924 "lexer_ml.ml"

  | 42 ->
# 249 "lexer_ml.mll"
        ( TSemiColon(tokinfo lexbuf) )
# 929 "lexer_ml.ml"

  | 43 ->
# 250 "lexer_ml.mll"
         ( TSemiColonSemiColon(tokinfo lexbuf) )
# 934 "lexer_ml.ml"

  | 44 ->
# 251 "lexer_ml.mll"
        ( TQuestion(tokinfo lexbuf) )
# 939 "lexer_ml.ml"

  | 45 ->
# 252 "lexer_ml.mll"
         ( TQuestionQuestion(tokinfo lexbuf) )
# 944 "lexer_ml.ml"

  | 46 ->
# 253 "lexer_ml.mll"
        ( TUnderscore(tokinfo lexbuf) )
# 949 "lexer_ml.ml"

  | 47 ->
# 254 "lexer_ml.mll"
        ( TPipe(tokinfo lexbuf) )
# 954 "lexer_ml.ml"

  | 48 ->
# 255 "lexer_ml.mll"
        ( TTilde(tokinfo lexbuf) )
# 959 "lexer_ml.ml"

  | 49 ->
# 257 "lexer_ml.mll"
         ( TAssign (tokinfo lexbuf) )
# 964 "lexer_ml.ml"

  | 50 ->
# 258 "lexer_ml.mll"
         ( TAssignMutable (tokinfo lexbuf) )
# 969 "lexer_ml.ml"

  | 51 ->
# 260 "lexer_ml.mll"
         ( TColonGreater(tokinfo lexbuf) )
# 974 "lexer_ml.ml"

  | 52 ->
# 263 "lexer_ml.mll"
         ( TMinusDot(tokinfo lexbuf) )
# 979 "lexer_ml.ml"

  | 53 ->
# 265 "lexer_ml.mll"
         ( TPlusDot(tokinfo lexbuf) )
# 984 "lexer_ml.ml"

  | 54 ->
# 268 "lexer_ml.mll"
        ( TBang(tokinfo lexbuf) )
# 989 "lexer_ml.ml"

  | 55 ->
# 271 "lexer_ml.mll"
         ( TBracketAt(tokinfo lexbuf) )
# 994 "lexer_ml.ml"

  | 56 ->
# 272 "lexer_ml.mll"
           ( TBracketAtAt(tokinfo lexbuf) )
# 999 "lexer_ml.ml"

  | 57 ->
# 273 "lexer_ml.mll"
           ( TBracketAtAtAt(tokinfo lexbuf) )
# 1004 "lexer_ml.ml"

  | 58 ->
# 274 "lexer_ml.mll"
           ( TBracketPercent(tokinfo lexbuf) )
# 1009 "lexer_ml.ml"

  | 59 ->
# 275 "lexer_ml.mll"
           ( TBracketPercentPercent(tokinfo lexbuf) )
# 1014 "lexer_ml.ml"

  | 60 ->
# 277 "lexer_ml.mll"
                  ( TPrefixOperator (tok lexbuf, tokinfo lexbuf) )
# 1019 "lexer_ml.ml"

  | 61 ->
# 278 "lexer_ml.mll"
                 ( TInfixOperator (tok lexbuf, tokinfo lexbuf) )
# 1024 "lexer_ml.ml"

  | 62 ->
# 280 "lexer_ml.mll"
         ( TInfixOperator (tok lexbuf, tokinfo lexbuf) )
# 1029 "lexer_ml.ml"

  | 63 ->
# 290 "lexer_ml.mll"
          (
      let info = tokinfo lexbuf in
      let s = tok lexbuf in
      match Common2.optionise (fun () -> Hashtbl.find keyword_table s) with
      | Some f -> f info
      | None -> TLowerIdent (s, info)
    )
# 1040 "lexer_ml.ml"

  | 64 ->
# 298 "lexer_ml.mll"
               (
      let s = tok lexbuf in
      TUpperIdent (s, tokinfo lexbuf)
    )
# 1048 "lexer_ml.ml"

  | 65 ->
# 303 "lexer_ml.mll"
                       (
      let s = tok lexbuf in
      TLabelDecl (s, tokinfo lexbuf)
    )
# 1056 "lexer_ml.ml"

  | 66 ->
# 307 "lexer_ml.mll"
                       (
      let s = tok lexbuf in
      TOptLabelDecl (s, tokinfo lexbuf)
    )
# 1064 "lexer_ml.ml"

  | 67 ->
# 324 "lexer_ml.mll"
   (
     let s = tok lexbuf in
     TInt (s, tokinfo lexbuf)
   )
# 1072 "lexer_ml.ml"

  | 68 ->
# 333 "lexer_ml.mll"
     (
     let s = tok lexbuf in
     TFloat (s, tokinfo lexbuf)
    )
# 1080 "lexer_ml.ml"

  | 69 ->
# 342 "lexer_ml.mll"
        (
     (* opti: use Buffer because some generated mlfiles contain huge strings *)
      let info = tokinfo lexbuf in
      let buf = Buffer.create 100 in
      string buf lexbuf;
      let s = Buffer.contents buf in
      TString (s, info |> Parse_info.tok_add_s (s ^ "\""))
    )
# 1092 "lexer_ml.ml"

  | 70 ->
# 354 "lexer_ml.mll"
         (
      let info = tokinfo lexbuf in
      let buf = Buffer.create 100 in
      quoted_string buf lexbuf;
      let s = Buffer.contents buf in
      TString (s, info |> Parse_info.tok_add_s (s ^ "|}"))
  )
# 1103 "lexer_ml.ml"

  | 71 ->
let
# 365 "lexer_ml.mll"
              c
# 1109 "lexer_ml.ml"
= Lexing.sub_lexeme_char lexbuf (lexbuf.Lexing.lex_start_pos + 1) in
# 365 "lexer_ml.mll"
                     (
      TChar (String.make 1 c, tokinfo lexbuf)
    )
# 1115 "lexer_ml.ml"

  | 72 ->
# 376 "lexer_ml.mll"
   (
      let s = tok lexbuf in
      TChar (s, tokinfo lexbuf)
    )
# 1123 "lexer_ml.ml"

  | 73 ->
# 381 "lexer_ml.mll"
               (
      error ("unrecognised escape, in token rule:"^tok lexbuf);
      TUnknown (tokinfo lexbuf)
    )
# 1131 "lexer_ml.ml"

  | 74 ->
# 394 "lexer_ml.mll"
        ( EOF (tokinfo lexbuf) )
# 1136 "lexer_ml.ml"

  | 75 ->
# 396 "lexer_ml.mll"
      (
      error ("unrecognised symbol, in token rule:"^tok lexbuf);
      TUnknown (tokinfo lexbuf)
    )
# 1144 "lexer_ml.ml"

  | __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
      __ocaml_lex_token_rec lexbuf __ocaml_lex_state

and string buf lexbuf =
   __ocaml_lex_string_rec buf lexbuf 130
and __ocaml_lex_string_rec buf lexbuf __ocaml_lex_state =
  match Lexing.engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
      | 0 ->
# 409 "lexer_ml.mll"
                  ( () )
# 1156 "lexer_ml.ml"

  | 1 ->
# 411 "lexer_ml.mll"
                  ( 
      Buffer.add_string buf (tok lexbuf);
      string buf lexbuf 
    )
# 1164 "lexer_ml.ml"

  | 2 ->
let
# 416 "lexer_ml.mll"
                v
# 1170 "lexer_ml.ml"
= Lexing.sub_lexeme_char lexbuf (lexbuf.Lexing.lex_start_pos + 1)
and
# 416 "lexer_ml.mll"
                       x
# 1175 "lexer_ml.ml"
= Lexing.sub_lexeme lexbuf lexbuf.Lexing.lex_start_pos (lexbuf.Lexing.lex_start_pos + 2) in
# 416 "lexer_ml.mll"
                         ( 
      (* todo: check char ? *)
      (match v with
      | _ -> ()
      );
      Buffer.add_string buf x;
      string buf lexbuf
    )
# 1186 "lexer_ml.ml"

  | 3 ->
# 424 "lexer_ml.mll"
        ( error "WEIRD end of file in double quoted string" )
# 1191 "lexer_ml.ml"

  | __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
      __ocaml_lex_string_rec buf lexbuf __ocaml_lex_state

and quoted_string buf lexbuf =
   __ocaml_lex_quoted_string_rec buf lexbuf 136
and __ocaml_lex_quoted_string_rec buf lexbuf __ocaml_lex_state =
  match Lexing.engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
      | 0 ->
# 427 "lexer_ml.mll"
         ( () )
# 1203 "lexer_ml.ml"

  | 1 ->
# 429 "lexer_ml.mll"
                 ( 
      Buffer.add_string buf (tok lexbuf);
      quoted_string buf lexbuf 
    )
# 1211 "lexer_ml.ml"

  | 2 ->
let
# 434 "lexer_ml.mll"
                 x
# 1217 "lexer_ml.ml"
= Lexing.sub_lexeme_char lexbuf lexbuf.Lexing.lex_start_pos in
# 434 "lexer_ml.mll"
                   ( 
      Buffer.add_char buf x;
      quoted_string buf lexbuf
    )
# 1224 "lexer_ml.ml"

  | 3 ->
# 438 "lexer_ml.mll"
        ( error "WEIRD end of file in quoted string" )
# 1229 "lexer_ml.ml"

  | __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
      __ocaml_lex_quoted_string_rec buf lexbuf __ocaml_lex_state

and comment lexbuf =
   __ocaml_lex_comment_rec lexbuf 142
and __ocaml_lex_comment_rec lexbuf __ocaml_lex_state =
  match Lexing.engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
      | 0 ->
# 445 "lexer_ml.mll"
         ( tok lexbuf )
# 1241 "lexer_ml.ml"

  | 1 ->
# 447 "lexer_ml.mll"
         ( 
      (* in ocaml comments are nestable *)
      let s = comment lexbuf in
      "(*" ^ s ^ comment lexbuf
    )
# 1250 "lexer_ml.ml"

  | 2 ->
# 455 "lexer_ml.mll"
               ( let s = tok lexbuf in s ^ comment lexbuf )
# 1255 "lexer_ml.ml"

  | 3 ->
# 456 "lexer_ml.mll"
            ( let s = tok lexbuf in s ^ comment lexbuf )
# 1260 "lexer_ml.ml"

  | 4 ->
# 457 "lexer_ml.mll"
            ( let s = tok lexbuf in s ^ comment lexbuf )
# 1265 "lexer_ml.ml"

  | 5 ->
# 458 "lexer_ml.mll"
        ( 
      error "end of file in comment";
      "*)"
    )
# 1273 "lexer_ml.ml"

  | 6 ->
# 462 "lexer_ml.mll"
       ( 
      let s = tok lexbuf in
      error ("unrecognised symbol in comment:"^s);
      s ^ comment lexbuf
    )
# 1282 "lexer_ml.ml"

  | __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
      __ocaml_lex_comment_rec lexbuf __ocaml_lex_state

;;

OCaml

Innovation. Community. Security.