This file is indexed.

/usr/lib/ocaml/tyxml/xml.annot is in libtyxml-ocaml-dev 3.5.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
"lib/xml.ml" 30 1061 1067 "lib/xml.ml" 30 1061 1080
type(
  'a -> 'a
)
ident(
  def uri_of_string "lib/xml.ml" 31 1087 1089 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 30 1061 1081 "lib/xml.ml" 30 1061 1082
type(
  'a
)
ident(
  def s "lib/xml.ml" 30 1061 1085 "lib/xml.ml" 30 1061 1086
)
"lib/xml.ml" 30 1061 1085 "lib/xml.ml" 30 1061 1086
type(
  'a
)
ident(
  int_ref s "lib/xml.ml" 30 1061 1081 "lib/xml.ml" 30 1061 1082
)
"lib/xml.ml" 31 1087 1093 "lib/xml.ml" 31 1087 1106
type(
  'b -> 'b
)
ident(
  def string_of_uri "lib/xml.ml" 33 1114 1116 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 31 1087 1107 "lib/xml.ml" 31 1087 1108
type(
  'b
)
ident(
  def s "lib/xml.ml" 31 1087 1111 "lib/xml.ml" 31 1087 1112
)
"lib/xml.ml" 31 1087 1111 "lib/xml.ml" 31 1087 1112
type(
  'b
)
ident(
  int_ref s "lib/xml.ml" 31 1087 1107 "lib/xml.ml" 31 1087 1108
)
"lib/xml.ml" 46 1427 1433 "lib/xml.ml" 46 1427 1441
type(
  'c * 'd -> 'd
)
ident(
  def acontent "lib/xml.ml" 47 1453 1455 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 46 1427 1443 "lib/xml.ml" 46 1427 1444
type(
  'c
)
"lib/xml.ml" 46 1427 1446 "lib/xml.ml" 46 1427 1447
type(
  'd
)
ident(
  def a "lib/xml.ml" 46 1427 1451 "lib/xml.ml" 46 1427 1452
)
"lib/xml.ml" 46 1427 1442 "lib/xml.ml" 46 1427 1448
type(
  'c * 'd
)
"lib/xml.ml" 46 1427 1451 "lib/xml.ml" 46 1427 1452
type(
  'd
)
ident(
  int_ref a "lib/xml.ml" 46 1427 1446 "lib/xml.ml" 46 1427 1447
)
"lib/xml.ml" 47 1453 1459 "lib/xml.ml" 47 1453 1464
type(
  'e * 'f -> 'e
)
ident(
  def aname "lib/xml.ml" 49 1483 1485 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 47 1453 1466 "lib/xml.ml" 47 1453 1470
type(
  'e
)
ident(
  def name "lib/xml.ml" 47 1453 1477 "lib/xml.ml" 47 1453 1481
)
"lib/xml.ml" 47 1453 1472 "lib/xml.ml" 47 1453 1473
type(
  'f
)
"lib/xml.ml" 47 1453 1465 "lib/xml.ml" 47 1453 1474
type(
  'e * 'f
)
"lib/xml.ml" 47 1453 1477 "lib/xml.ml" 47 1453 1481
type(
  'e
)
ident(
  int_ref name "lib/xml.ml" 47 1453 1466 "lib/xml.ml" 47 1453 1470
)
"lib/xml.ml" 49 1483 1489 "lib/xml.ml" 49 1483 1501
type(
  'g -> float -> 'g * acontent
)
ident(
  def float_attrib "lib/xml.ml" 50 1534 1536 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 49 1483 1502 "lib/xml.ml" 49 1483 1506
type(
  'g
)
ident(
  def name "lib/xml.ml" 49 1483 1507 "lib/xml.ml" 49 1483 1533
)
"lib/xml.ml" 49 1483 1507 "lib/xml.ml" 49 1483 1512
type(
  float
)
ident(
  def value "lib/xml.ml" 49 1483 1515 "lib/xml.ml" 49 1483 1533
)
"lib/xml.ml" 49 1483 1515 "lib/xml.ml" 49 1483 1519
type(
  'g
)
ident(
  int_ref name "lib/xml.ml" 49 1483 1502 "lib/xml.ml" 49 1483 1506
)
"lib/xml.ml" 49 1483 1528 "lib/xml.ml" 49 1483 1533
type(
  float
)
ident(
  int_ref value "lib/xml.ml" 49 1483 1507 "lib/xml.ml" 49 1483 1512
)
"lib/xml.ml" 49 1483 1521 "lib/xml.ml" 49 1483 1533
type(
  acontent
)
"lib/xml.ml" 49 1483 1515 "lib/xml.ml" 49 1483 1533
type(
  'g * acontent
)
"lib/xml.ml" 50 1534 1540 "lib/xml.ml" 50 1534 1550
type(
  'h -> int -> 'h * acontent
)
ident(
  def int_attrib "lib/xml.ml" 51 1581 1583 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 50 1534 1551 "lib/xml.ml" 50 1534 1555
type(
  'h
)
ident(
  def name "lib/xml.ml" 50 1534 1556 "lib/xml.ml" 50 1534 1580
)
"lib/xml.ml" 50 1534 1556 "lib/xml.ml" 50 1534 1561
type(
  int
)
ident(
  def value "lib/xml.ml" 50 1534 1564 "lib/xml.ml" 50 1534 1580
)
"lib/xml.ml" 50 1534 1564 "lib/xml.ml" 50 1534 1568
type(
  'h
)
ident(
  int_ref name "lib/xml.ml" 50 1534 1551 "lib/xml.ml" 50 1534 1555
)
"lib/xml.ml" 50 1534 1575 "lib/xml.ml" 50 1534 1580
type(
  int
)
ident(
  int_ref value "lib/xml.ml" 50 1534 1556 "lib/xml.ml" 50 1534 1561
)
"lib/xml.ml" 50 1534 1570 "lib/xml.ml" 50 1534 1580
type(
  acontent
)
"lib/xml.ml" 50 1534 1564 "lib/xml.ml" 50 1534 1580
type(
  'h * acontent
)
"lib/xml.ml" 51 1581 1587 "lib/xml.ml" 51 1581 1600
type(
  'i -> string -> 'i * acontent
)
ident(
  def string_attrib "lib/xml.ml" 52 1631 1633 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 51 1581 1601 "lib/xml.ml" 51 1581 1605
type(
  'i
)
ident(
  def name "lib/xml.ml" 51 1581 1606 "lib/xml.ml" 51 1581 1630
)
"lib/xml.ml" 51 1581 1606 "lib/xml.ml" 51 1581 1611
type(
  string
)
ident(
  def value "lib/xml.ml" 51 1581 1614 "lib/xml.ml" 51 1581 1630
)
"lib/xml.ml" 51 1581 1614 "lib/xml.ml" 51 1581 1618
type(
  'i
)
ident(
  int_ref name "lib/xml.ml" 51 1581 1601 "lib/xml.ml" 51 1581 1605
)
"lib/xml.ml" 51 1581 1625 "lib/xml.ml" 51 1581 1630
type(
  string
)
ident(
  int_ref value "lib/xml.ml" 51 1581 1606 "lib/xml.ml" 51 1581 1611
)
"lib/xml.ml" 51 1581 1620 "lib/xml.ml" 51 1581 1630
type(
  acontent
)
"lib/xml.ml" 51 1581 1614 "lib/xml.ml" 51 1581 1630
type(
  'i * acontent
)
"lib/xml.ml" 52 1631 1637 "lib/xml.ml" 52 1631 1653
type(
  'j -> string list -> 'j * acontent
)
ident(
  def space_sep_attrib "lib/xml.ml" 53 1696 1698 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 52 1631 1654 "lib/xml.ml" 52 1631 1658
type(
  'j
)
ident(
  def name "lib/xml.ml" 52 1631 1659 "lib/xml.ml" 52 1631 1695
)
"lib/xml.ml" 52 1631 1659 "lib/xml.ml" 52 1631 1665
type(
  string list
)
ident(
  def values "lib/xml.ml" 52 1631 1668 "lib/xml.ml" 52 1631 1695
)
"lib/xml.ml" 52 1631 1668 "lib/xml.ml" 52 1631 1672
type(
  'j
)
ident(
  int_ref name "lib/xml.ml" 52 1631 1654 "lib/xml.ml" 52 1631 1658
)
"lib/xml.ml" 52 1631 1681 "lib/xml.ml" 52 1631 1686
type(
  separator
)
"lib/xml.ml" 52 1631 1688 "lib/xml.ml" 52 1631 1694
type(
  string list
)
ident(
  int_ref values "lib/xml.ml" 52 1631 1659 "lib/xml.ml" 52 1631 1665
)
"lib/xml.ml" 52 1631 1674 "lib/xml.ml" 52 1631 1695
type(
  acontent
)
"lib/xml.ml" 52 1631 1668 "lib/xml.ml" 52 1631 1695
type(
  'j * acontent
)
"lib/xml.ml" 53 1696 1702 "lib/xml.ml" 53 1696 1718
type(
  'k -> string list -> 'k * acontent
)
ident(
  def comma_sep_attrib "lib/xml.ml" 54 1761 1763 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 53 1696 1719 "lib/xml.ml" 53 1696 1723
type(
  'k
)
ident(
  def name "lib/xml.ml" 53 1696 1724 "lib/xml.ml" 53 1696 1760
)
"lib/xml.ml" 53 1696 1724 "lib/xml.ml" 53 1696 1730
type(
  string list
)
ident(
  def values "lib/xml.ml" 53 1696 1733 "lib/xml.ml" 53 1696 1760
)
"lib/xml.ml" 53 1696 1733 "lib/xml.ml" 53 1696 1737
type(
  'k
)
ident(
  int_ref name "lib/xml.ml" 53 1696 1719 "lib/xml.ml" 53 1696 1723
)
"lib/xml.ml" 53 1696 1746 "lib/xml.ml" 53 1696 1751
type(
  separator
)
"lib/xml.ml" 53 1696 1753 "lib/xml.ml" 53 1696 1759
type(
  string list
)
ident(
  int_ref values "lib/xml.ml" 53 1696 1724 "lib/xml.ml" 53 1696 1730
)
"lib/xml.ml" 53 1696 1739 "lib/xml.ml" 53 1696 1760
type(
  acontent
)
"lib/xml.ml" 53 1696 1733 "lib/xml.ml" 53 1696 1760
type(
  'k * acontent
)
"lib/xml.ml" 54 1761 1767 "lib/xml.ml" 54 1761 1787
type(
  'l -> string -> 'l * acontent
)
ident(
  def event_handler_attrib "lib/xml.ml" 55 1818 1820 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 54 1761 1788 "lib/xml.ml" 54 1761 1792
type(
  'l
)
ident(
  def name "lib/xml.ml" 54 1761 1793 "lib/xml.ml" 54 1761 1817
)
"lib/xml.ml" 54 1761 1793 "lib/xml.ml" 54 1761 1798
type(
  string
)
ident(
  def value "lib/xml.ml" 54 1761 1801 "lib/xml.ml" 54 1761 1817
)
"lib/xml.ml" 54 1761 1801 "lib/xml.ml" 54 1761 1805
type(
  'l
)
ident(
  int_ref name "lib/xml.ml" 54 1761 1788 "lib/xml.ml" 54 1761 1792
)
"lib/xml.ml" 54 1761 1812 "lib/xml.ml" 54 1761 1817
type(
  string
)
ident(
  int_ref value "lib/xml.ml" 54 1761 1793 "lib/xml.ml" 54 1761 1798
)
"lib/xml.ml" 54 1761 1807 "lib/xml.ml" 54 1761 1817
type(
  acontent
)
"lib/xml.ml" 54 1761 1801 "lib/xml.ml" 54 1761 1817
type(
  'l * acontent
)
"lib/xml.ml" 55 1818 1824 "lib/xml.ml" 55 1818 1850
type(
  'm -> string -> 'm * acontent
)
ident(
  def mouse_event_handler_attrib "lib/xml.ml" 56 1881 1883 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 55 1818 1851 "lib/xml.ml" 55 1818 1855
type(
  'm
)
ident(
  def name "lib/xml.ml" 55 1818 1856 "lib/xml.ml" 55 1818 1880
)
"lib/xml.ml" 55 1818 1856 "lib/xml.ml" 55 1818 1861
type(
  string
)
ident(
  def value "lib/xml.ml" 55 1818 1864 "lib/xml.ml" 55 1818 1880
)
"lib/xml.ml" 55 1818 1864 "lib/xml.ml" 55 1818 1868
type(
  'm
)
ident(
  int_ref name "lib/xml.ml" 55 1818 1851 "lib/xml.ml" 55 1818 1855
)
"lib/xml.ml" 55 1818 1875 "lib/xml.ml" 55 1818 1880
type(
  string
)
ident(
  int_ref value "lib/xml.ml" 55 1818 1856 "lib/xml.ml" 55 1818 1861
)
"lib/xml.ml" 55 1818 1870 "lib/xml.ml" 55 1818 1880
type(
  acontent
)
"lib/xml.ml" 55 1818 1864 "lib/xml.ml" 55 1818 1880
type(
  'm * acontent
)
"lib/xml.ml" 56 1881 1887 "lib/xml.ml" 56 1881 1916
type(
  'n -> string -> 'n * acontent
)
ident(
  def keyboard_event_handler_attrib "lib/xml.ml" 57 1947 1949 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 56 1881 1917 "lib/xml.ml" 56 1881 1921
type(
  'n
)
ident(
  def name "lib/xml.ml" 56 1881 1922 "lib/xml.ml" 56 1881 1946
)
"lib/xml.ml" 56 1881 1922 "lib/xml.ml" 56 1881 1927
type(
  string
)
ident(
  def value "lib/xml.ml" 56 1881 1930 "lib/xml.ml" 56 1881 1946
)
"lib/xml.ml" 56 1881 1930 "lib/xml.ml" 56 1881 1934
type(
  'n
)
ident(
  int_ref name "lib/xml.ml" 56 1881 1917 "lib/xml.ml" 56 1881 1921
)
"lib/xml.ml" 56 1881 1941 "lib/xml.ml" 56 1881 1946
type(
  string
)
ident(
  int_ref value "lib/xml.ml" 56 1881 1922 "lib/xml.ml" 56 1881 1927
)
"lib/xml.ml" 56 1881 1936 "lib/xml.ml" 56 1881 1946
type(
  acontent
)
"lib/xml.ml" 56 1881 1930 "lib/xml.ml" 56 1881 1946
type(
  'n * acontent
)
"lib/xml.ml" 57 1947 1953 "lib/xml.ml" 57 1947 1963
type(
  'o -> string -> 'o * acontent
)
ident(
  def uri_attrib "lib/xml.ml" 58 1994 1996 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 57 1947 1964 "lib/xml.ml" 57 1947 1968
type(
  'o
)
ident(
  def name "lib/xml.ml" 57 1947 1969 "lib/xml.ml" 57 1947 1993
)
"lib/xml.ml" 57 1947 1969 "lib/xml.ml" 57 1947 1974
type(
  string
)
ident(
  def value "lib/xml.ml" 57 1947 1977 "lib/xml.ml" 57 1947 1993
)
"lib/xml.ml" 57 1947 1977 "lib/xml.ml" 57 1947 1981
type(
  'o
)
ident(
  int_ref name "lib/xml.ml" 57 1947 1964 "lib/xml.ml" 57 1947 1968
)
"lib/xml.ml" 57 1947 1988 "lib/xml.ml" 57 1947 1993
type(
  string
)
ident(
  int_ref value "lib/xml.ml" 57 1947 1969 "lib/xml.ml" 57 1947 1974
)
"lib/xml.ml" 57 1947 1983 "lib/xml.ml" 57 1947 1993
type(
  acontent
)
"lib/xml.ml" 57 1947 1977 "lib/xml.ml" 57 1947 1993
type(
  'o * acontent
)
"lib/xml.ml" 58 1994 2000 "lib/xml.ml" 58 1994 2011
type(
  'p -> string list -> 'p * acontent
)
ident(
  def uris_attrib "lib/xml.ml" 61 2056 2058 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 58 1994 2012 "lib/xml.ml" 58 1994 2016
type(
  'p
)
ident(
  def name "lib/xml.ml" 58 1994 2017 "lib/xml.ml" 58 1994 2053
)
"lib/xml.ml" 58 1994 2017 "lib/xml.ml" 58 1994 2023
type(
  string list
)
ident(
  def values "lib/xml.ml" 58 1994 2026 "lib/xml.ml" 58 1994 2053
)
"lib/xml.ml" 58 1994 2026 "lib/xml.ml" 58 1994 2030
type(
  'p
)
ident(
  int_ref name "lib/xml.ml" 58 1994 2012 "lib/xml.ml" 58 1994 2016
)
"lib/xml.ml" 58 1994 2039 "lib/xml.ml" 58 1994 2044
type(
  separator
)
"lib/xml.ml" 58 1994 2046 "lib/xml.ml" 58 1994 2052
type(
  string list
)
ident(
  int_ref values "lib/xml.ml" 58 1994 2017 "lib/xml.ml" 58 1994 2023
)
"lib/xml.ml" 58 1994 2032 "lib/xml.ml" 58 1994 2053
type(
  acontent
)
"lib/xml.ml" 58 1994 2026 "lib/xml.ml" 58 1994 2053
type(
  'p * acontent
)
"lib/xml.ml" 76 2345 2351 "lib/xml.ml" 76 2345 2358
type(
  elt -> econtent
)
ident(
  def content "lib/xml.ml" 78 2374 2376 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 76 2345 2359 "lib/xml.ml" 76 2345 2362
type(
  elt
)
ident(
  def elt "lib/xml.ml" 76 2345 2365 "lib/xml.ml" 76 2345 2372
)
"lib/xml.ml" 76 2345 2365 "lib/xml.ml" 76 2345 2368
type(
  elt
)
ident(
  int_ref elt "lib/xml.ml" 76 2345 2359 "lib/xml.ml" 76 2345 2362
)
"lib/xml.ml" 76 2345 2365 "lib/xml.ml" 76 2345 2372
type(
  econtent
)
"lib/xml.ml" 78 2374 2380 "lib/xml.ml" 78 2374 2385
type(
  unit -> elt
)
ident(
  def empty "lib/xml.ml" 80 2408 2410 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 78 2374 2386 "lib/xml.ml" 78 2374 2388
type(
  unit
)
"lib/xml.ml" 78 2374 2399 "lib/xml.ml" 78 2374 2404
type(
  econtent
)
"lib/xml.ml" 78 2374 2391 "lib/xml.ml" 78 2374 2406
type(
  elt
)
"lib/xml.ml" 80 2408 2414 "lib/xml.ml" 80 2408 2421
type(
  string -> elt
)
ident(
  def comment "lib/xml.ml" 82 2447 2449 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 80 2408 2422 "lib/xml.ml" 80 2408 2423
type(
  string
)
ident(
  def c "lib/xml.ml" 80 2408 2426 "lib/xml.ml" 80 2408 2445
)
"lib/xml.ml" 80 2408 2442 "lib/xml.ml" 80 2408 2443
type(
  string
)
ident(
  int_ref c "lib/xml.ml" 80 2408 2422 "lib/xml.ml" 80 2408 2423
)
"lib/xml.ml" 80 2408 2434 "lib/xml.ml" 80 2408 2443
type(
  econtent
)
"lib/xml.ml" 80 2408 2426 "lib/xml.ml" 80 2408 2445
type(
  elt
)
"lib/xml.ml" 82 2447 2453 "lib/xml.ml" 82 2447 2459
type(
  string -> elt
)
ident(
  def pcdata "lib/xml.ml" 83 2483 2485 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 82 2447 2460 "lib/xml.ml" 82 2447 2461
type(
  string
)
ident(
  def d "lib/xml.ml" 82 2447 2464 "lib/xml.ml" 82 2447 2482
)
"lib/xml.ml" 82 2447 2479 "lib/xml.ml" 82 2447 2480
type(
  string
)
ident(
  int_ref d "lib/xml.ml" 82 2447 2460 "lib/xml.ml" 82 2447 2461
)
"lib/xml.ml" 82 2447 2472 "lib/xml.ml" 82 2447 2480
type(
  econtent
)
"lib/xml.ml" 82 2447 2464 "lib/xml.ml" 82 2447 2482
type(
  elt
)
"lib/xml.ml" 83 2483 2489 "lib/xml.ml" 83 2483 2502
type(
  string -> elt
)
ident(
  def encodedpcdata "lib/xml.ml" 84 2533 2535 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 83 2483 2503 "lib/xml.ml" 83 2483 2504
type(
  string
)
ident(
  def d "lib/xml.ml" 83 2483 2507 "lib/xml.ml" 83 2483 2532
)
"lib/xml.ml" 83 2483 2529 "lib/xml.ml" 83 2483 2530
type(
  string
)
ident(
  int_ref d "lib/xml.ml" 83 2483 2503 "lib/xml.ml" 83 2483 2504
)
"lib/xml.ml" 83 2483 2515 "lib/xml.ml" 83 2483 2530
type(
  econtent
)
"lib/xml.ml" 83 2483 2507 "lib/xml.ml" 83 2483 2532
type(
  elt
)
"lib/xml.ml" 84 2533 2539 "lib/xml.ml" 84 2533 2545
type(
  string -> elt
)
ident(
  def entity "lib/xml.ml" 86 2570 2572 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 84 2533 2546 "lib/xml.ml" 84 2533 2547
type(
  string
)
ident(
  def e "lib/xml.ml" 84 2533 2550 "lib/xml.ml" 84 2533 2568
)
"lib/xml.ml" 84 2533 2565 "lib/xml.ml" 84 2533 2566
type(
  string
)
ident(
  int_ref e "lib/xml.ml" 84 2533 2546 "lib/xml.ml" 84 2533 2547
)
"lib/xml.ml" 84 2533 2558 "lib/xml.ml" 84 2533 2566
type(
  econtent
)
"lib/xml.ml" 84 2533 2550 "lib/xml.ml" 84 2533 2568
type(
  elt
)
"lib/xml.ml" 86 2570 2576 "lib/xml.ml" 86 2570 2581
type(
  string -> elt
)
ident(
  def cdata "lib/xml.ml" 95 2883 2885 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 86 2570 2582 "lib/xml.ml" 86 2570 2583
type(
  string
)
ident(
  def s "lib/xml.ml" 90 2734 2738 "lib/xml.ml" 93 2861 2881
)
"lib/xml.ml" 90 2734 2742 "lib/xml.ml" 90 2734 2744
type(
  string
)
ident(
  def s' "lib/xml.ml" 93 2861 2865 "lib/xml.ml" 93 2861 2881
)
"lib/xml.ml" 90 2734 2747 "lib/xml.ml" 90 2734 2762
type(
  string
)
"lib/xml.ml" 90 2734 2762 "lib/xml.ml" 90 2734 2763
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 91 2764 2778 "lib/xml.ml" 91 2764 2796
type(
  Str.regexp -> string -> string -> string
)
ident(
  ext_ref Str.global_replace
)
"lib/xml.ml" 91 2764 2798 "lib/xml.ml" 91 2764 2808
type(
  string -> Str.regexp
)
ident(
  ext_ref Str.regexp
)
"lib/xml.ml" 91 2764 2810 "lib/xml.ml" 91 2764 2819
type(
  string -> string
)
ident(
  ext_ref Str.quote
)
"lib/xml.ml" 91 2764 2820 "lib/xml.ml" 91 2764 2825
type(
  string
)
"lib/xml.ml" 91 2764 2809 "lib/xml.ml" 91 2764 2826
call(
  stack
)
type(
  string
)
"lib/xml.ml" 91 2764 2797 "lib/xml.ml" 91 2764 2827
call(
  stack
)
type(
  Str.regexp
)
"lib/xml.ml" 91 2764 2828 "lib/xml.ml" 91 2764 2830
type(
  string
)
"lib/xml.ml" 91 2764 2831 "lib/xml.ml" 91 2764 2832
type(
  string
)
ident(
  int_ref s "lib/xml.ml" 86 2570 2582 "lib/xml.ml" 86 2570 2583
)
"lib/xml.ml" 91 2764 2777 "lib/xml.ml" 91 2764 2833
call(
  stack
)
type(
  string
)
"lib/xml.ml" 92 2834 2847 "lib/xml.ml" 92 2834 2848
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 92 2834 2848 "lib/xml.ml" 92 2834 2857
type(
  string
)
"lib/xml.ml" 91 2764 2777 "lib/xml.ml" 92 2834 2857
call(
  stack
)
type(
  string
)
"lib/xml.ml" 90 2734 2747 "lib/xml.ml" 92 2834 2857
call(
  stack
)
type(
  string
)
"lib/xml.ml" 93 2861 2865 "lib/xml.ml" 93 2861 2878
type(
  string -> elt
)
ident(
  int_ref encodedpcdata "lib/xml.ml" 83 2483 2489 "lib/xml.ml" 83 2483 2502
)
"lib/xml.ml" 93 2861 2879 "lib/xml.ml" 93 2861 2881
type(
  string
)
ident(
  int_ref s' "lib/xml.ml" 90 2734 2742 "lib/xml.ml" 90 2734 2744
)
"lib/xml.ml" 93 2861 2865 "lib/xml.ml" 93 2861 2881
call(
  tail
)
type(
  elt
)
"lib/xml.ml" 90 2734 2738 "lib/xml.ml" 93 2861 2881
type(
  elt
)
"lib/xml.ml" 95 2883 2889 "lib/xml.ml" 95 2883 2901
type(
  string -> elt
)
ident(
  def cdata_script "lib/xml.ml" 104 3207 3209 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 95 2883 2902 "lib/xml.ml" 95 2883 2903
type(
  string
)
ident(
  def s "lib/xml.ml" 99 3054 3058 "lib/xml.ml" 102 3185 3205
)
"lib/xml.ml" 99 3054 3062 "lib/xml.ml" 99 3054 3064
type(
  string
)
ident(
  def s' "lib/xml.ml" 102 3185 3189 "lib/xml.ml" 102 3185 3205
)
"lib/xml.ml" 99 3054 3067 "lib/xml.ml" 99 3054 3084
type(
  string
)
"lib/xml.ml" 99 3054 3084 "lib/xml.ml" 99 3054 3085
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 100 3086 3100 "lib/xml.ml" 100 3086 3118
type(
  Str.regexp -> string -> string -> string
)
ident(
  ext_ref Str.global_replace
)
"lib/xml.ml" 100 3086 3120 "lib/xml.ml" 100 3086 3130
type(
  string -> Str.regexp
)
ident(
  ext_ref Str.regexp
)
"lib/xml.ml" 100 3086 3132 "lib/xml.ml" 100 3086 3141
type(
  string -> string
)
ident(
  ext_ref Str.quote
)
"lib/xml.ml" 100 3086 3142 "lib/xml.ml" 100 3086 3147
type(
  string
)
"lib/xml.ml" 100 3086 3131 "lib/xml.ml" 100 3086 3148
call(
  stack
)
type(
  string
)
"lib/xml.ml" 100 3086 3119 "lib/xml.ml" 100 3086 3149
call(
  stack
)
type(
  Str.regexp
)
"lib/xml.ml" 100 3086 3150 "lib/xml.ml" 100 3086 3152
type(
  string
)
"lib/xml.ml" 100 3086 3153 "lib/xml.ml" 100 3086 3154
type(
  string
)
ident(
  int_ref s "lib/xml.ml" 95 2883 2902 "lib/xml.ml" 95 2883 2903
)
"lib/xml.ml" 100 3086 3099 "lib/xml.ml" 100 3086 3155
call(
  stack
)
type(
  string
)
"lib/xml.ml" 101 3156 3169 "lib/xml.ml" 101 3156 3170
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 101 3156 3170 "lib/xml.ml" 101 3156 3181
type(
  string
)
"lib/xml.ml" 100 3086 3099 "lib/xml.ml" 101 3156 3181
call(
  stack
)
type(
  string
)
"lib/xml.ml" 99 3054 3067 "lib/xml.ml" 101 3156 3181
call(
  stack
)
type(
  string
)
"lib/xml.ml" 102 3185 3189 "lib/xml.ml" 102 3185 3202
type(
  string -> elt
)
ident(
  int_ref encodedpcdata "lib/xml.ml" 83 2483 2489 "lib/xml.ml" 83 2483 2502
)
"lib/xml.ml" 102 3185 3203 "lib/xml.ml" 102 3185 3205
type(
  string
)
ident(
  int_ref s' "lib/xml.ml" 99 3054 3062 "lib/xml.ml" 99 3054 3064
)
"lib/xml.ml" 102 3185 3189 "lib/xml.ml" 102 3185 3205
call(
  tail
)
type(
  elt
)
"lib/xml.ml" 99 3054 3058 "lib/xml.ml" 102 3185 3205
type(
  elt
)
"lib/xml.ml" 104 3207 3213 "lib/xml.ml" 104 3207 3224
type(
  string -> elt
)
ident(
  def cdata_style "lib/xml.ml" 113 3538 3540 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 104 3207 3225 "lib/xml.ml" 104 3207 3226
type(
  string
)
ident(
  def s "lib/xml.ml" 108 3377 3381 "lib/xml.ml" 111 3516 3536
)
"lib/xml.ml" 108 3377 3385 "lib/xml.ml" 108 3377 3387
type(
  string
)
ident(
  def s' "lib/xml.ml" 111 3516 3520 "lib/xml.ml" 111 3516 3536
)
"lib/xml.ml" 108 3377 3390 "lib/xml.ml" 108 3377 3411
type(
  string
)
"lib/xml.ml" 108 3377 3411 "lib/xml.ml" 108 3377 3412
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 109 3413 3427 "lib/xml.ml" 109 3413 3445
type(
  Str.regexp -> string -> string -> string
)
ident(
  ext_ref Str.global_replace
)
"lib/xml.ml" 109 3413 3447 "lib/xml.ml" 109 3413 3457
type(
  string -> Str.regexp
)
ident(
  ext_ref Str.regexp
)
"lib/xml.ml" 109 3413 3459 "lib/xml.ml" 109 3413 3468
type(
  string -> string
)
ident(
  ext_ref Str.quote
)
"lib/xml.ml" 109 3413 3469 "lib/xml.ml" 109 3413 3474
type(
  string
)
"lib/xml.ml" 109 3413 3458 "lib/xml.ml" 109 3413 3475
call(
  stack
)
type(
  string
)
"lib/xml.ml" 109 3413 3446 "lib/xml.ml" 109 3413 3476
call(
  stack
)
type(
  Str.regexp
)
"lib/xml.ml" 109 3413 3477 "lib/xml.ml" 109 3413 3479
type(
  string
)
"lib/xml.ml" 109 3413 3480 "lib/xml.ml" 109 3413 3481
type(
  string
)
ident(
  int_ref s "lib/xml.ml" 104 3207 3225 "lib/xml.ml" 104 3207 3226
)
"lib/xml.ml" 109 3413 3426 "lib/xml.ml" 109 3413 3482
call(
  stack
)
type(
  string
)
"lib/xml.ml" 110 3483 3496 "lib/xml.ml" 110 3483 3497
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"lib/xml.ml" 110 3483 3497 "lib/xml.ml" 110 3483 3512
type(
  string
)
"lib/xml.ml" 109 3413 3426 "lib/xml.ml" 110 3483 3512
call(
  stack
)
type(
  string
)
"lib/xml.ml" 108 3377 3390 "lib/xml.ml" 110 3483 3512
call(
  stack
)
type(
  string
)
"lib/xml.ml" 111 3516 3520 "lib/xml.ml" 111 3516 3533
type(
  string -> elt
)
ident(
  int_ref encodedpcdata "lib/xml.ml" 83 2483 2489 "lib/xml.ml" 83 2483 2502
)
"lib/xml.ml" 111 3516 3534 "lib/xml.ml" 111 3516 3536
type(
  string
)
ident(
  int_ref s' "lib/xml.ml" 108 3377 3385 "lib/xml.ml" 108 3377 3387
)
"lib/xml.ml" 111 3516 3520 "lib/xml.ml" 111 3516 3536
call(
  tail
)
type(
  elt
)
"lib/xml.ml" 108 3377 3381 "lib/xml.ml" 111 3516 3536
type(
  elt
)
"lib/xml.ml" 113 3538 3544 "lib/xml.ml" 113 3538 3548
type(
  ?a:attrib list -> ename -> elt
)
ident(
  def leaf "lib/xml.ml" 119 3668 3670 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 113 3538 3550 "lib/xml.ml" 113 3538 3551
type(
  attrib list option
)
ident(
  def a "lib/xml.ml" 113 3538 3552 "lib/xml.ml" 117 3629 3666
)
"lib/xml.ml" 113 3538 3552 "lib/xml.ml" 113 3538 3556
type(
  ename
)
ident(
  def name "lib/xml.ml" 114 3559 3563 "lib/xml.ml" 117 3629 3666
)
"lib/xml.ml" 115 3571 3586 "lib/xml.ml" 115 3571 3587
type(
  attrib list option
)
ident(
  int_ref a "lib/xml.ml" 113 3538 3550 "lib/xml.ml" 113 3538 3551
)
"lib/xml.ml" 116 3593 3609 "lib/xml.ml" 116 3593 3610
type(
  attrib list
)
ident(
  def a "lib/xml.ml" 116 3593 3614 "lib/xml.ml" 116 3593 3628
)
"lib/xml.ml" 116 3593 3604 "lib/xml.ml" 116 3593 3610
type(
  attrib list option
)
"lib/xml.ml" 116 3593 3620 "lib/xml.ml" 116 3593 3624
type(
  ename
)
ident(
  int_ref name "lib/xml.ml" 113 3538 3552 "lib/xml.ml" 113 3538 3556
)
"lib/xml.ml" 116 3593 3626 "lib/xml.ml" 116 3593 3627
type(
  attrib list
)
ident(
  int_ref a "lib/xml.ml" 116 3593 3609 "lib/xml.ml" 116 3593 3610
)
"lib/xml.ml" 116 3593 3614 "lib/xml.ml" 116 3593 3628
type(
  econtent
)
"lib/xml.ml" 117 3629 3640 "lib/xml.ml" 117 3629 3644
type(
  attrib list option
)
"lib/xml.ml" 117 3629 3654 "lib/xml.ml" 117 3629 3658
type(
  ename
)
ident(
  int_ref name "lib/xml.ml" 113 3538 3552 "lib/xml.ml" 113 3538 3556
)
"lib/xml.ml" 117 3629 3660 "lib/xml.ml" 117 3629 3662
type(
  attrib list
)
"lib/xml.ml" 117 3629 3648 "lib/xml.ml" 117 3629 3663
type(
  econtent
)
"lib/xml.ml" 115 3571 3579 "lib/xml.ml" 117 3629 3664
type(
  econtent
)
"lib/xml.ml" 114 3559 3563 "lib/xml.ml" 117 3629 3666
type(
  elt
)
"lib/xml.ml" 119 3668 3674 "lib/xml.ml" 119 3668 3678
type(
  ?a:attrib list -> ename -> elt list -> elt
)
ident(
  def node "lib/xml.ml" 123 3778 3825 "lib/xml.ml" 126 3828 3831
)
"lib/xml.ml" 119 3668 3680 "lib/xml.ml" 119 3668 3681
type(
  attrib list option
)
ident(
  def a "lib/xml.ml" 119 3668 3682 "lib/xml.ml" 123 3778 3825
)
"lib/xml.ml" 119 3668 3682 "lib/xml.ml" 119 3668 3686
type(
  ename
)
ident(
  def name "lib/xml.ml" 119 3668 3687 "lib/xml.ml" 123 3778 3825
)
"lib/xml.ml" 119 3668 3687 "lib/xml.ml" 119 3668 3695
type(
  elt list
)
ident(
  def children "lib/xml.ml" 120 3698 3702 "lib/xml.ml" 123 3778 3825
)
"lib/xml.ml" 121 3710 3725 "lib/xml.ml" 121 3710 3726
type(
  attrib list option
)
ident(
  int_ref a "lib/xml.ml" 119 3668 3680 "lib/xml.ml" 119 3668 3681
)
"lib/xml.ml" 122 3732 3748 "lib/xml.ml" 122 3732 3749
type(
  attrib list
)
ident(
  def a "lib/xml.ml" 122 3732 3753 "lib/xml.ml" 122 3732 3777
)
"lib/xml.ml" 122 3732 3743 "lib/xml.ml" 122 3732 3749
type(
  attrib list option
)
"lib/xml.ml" 122 3732 3759 "lib/xml.ml" 122 3732 3763
type(
  ename
)
ident(
  int_ref name "lib/xml.ml" 119 3668 3682 "lib/xml.ml" 119 3668 3686
)
"lib/xml.ml" 122 3732 3765 "lib/xml.ml" 122 3732 3766
type(
  attrib list
)
ident(
  int_ref a "lib/xml.ml" 122 3732 3748 "lib/xml.ml" 122 3732 3749
)
"lib/xml.ml" 122 3732 3768 "lib/xml.ml" 122 3732 3776
type(
  elt list
)
ident(
  int_ref children "lib/xml.ml" 119 3668 3687 "lib/xml.ml" 119 3668 3695
)
"lib/xml.ml" 122 3732 3753 "lib/xml.ml" 122 3732 3777
type(
  econtent
)
"lib/xml.ml" 123 3778 3789 "lib/xml.ml" 123 3778 3793
type(
  attrib list option
)
"lib/xml.ml" 123 3778 3803 "lib/xml.ml" 123 3778 3807
type(
  ename
)
ident(
  int_ref name "lib/xml.ml" 119 3668 3682 "lib/xml.ml" 119 3668 3686
)
"lib/xml.ml" 123 3778 3809 "lib/xml.ml" 123 3778 3811
type(
  attrib list
)
"lib/xml.ml" 123 3778 3813 "lib/xml.ml" 123 3778 3821
type(
  elt list
)
ident(
  int_ref children "lib/xml.ml" 119 3668 3687 "lib/xml.ml" 119 3668 3695
)
"lib/xml.ml" 123 3778 3797 "lib/xml.ml" 123 3778 3822
type(
  econtent
)
"lib/xml.ml" 121 3710 3718 "lib/xml.ml" 123 3778 3823
type(
  econtent
)
"lib/xml.ml" 120 3698 3702 "lib/xml.ml" 123 3778 3825
type(
  elt
)
"lib/xml.ml" 129 3843 3887 "lib/xml.ml" 129 3843 3896
type(
  'a list
)
ident(
  def emptytags "lib/xml.ml" 129 3843 3901 "lib/xml.ml" 129 3843 3905
)
"lib/xml.ml" 129 3843 3899 "lib/xml.ml" 129 3843 3901
type(
  'a list
)
"lib/xml.ml" 129 3843 3851 "lib/xml.ml" 129 3843 3906
call(
  stack
)
"lib/xml.ml" 130 3907 3915 "lib/xml.ml" 130 3907 3931
call(
  stack
)
"lib/xml.ml" 132 3933 3937 "lib/xml.ml" 132 3933 3942
type(
  Format.formatter -> M.elt -> unit
)
ident(
  def print "lib/xml.ml" 133 4003 4003 "lib/xml.ml" 1 0 -1
)
"lib/xml.ml" 132 3933 3943 "lib/xml.ml" 132 3933 3946
type(
  Format.formatter
)
ident(
  def fmt "lib/xml.ml" 132 3933 3947 "lib/xml.ml" 132 3933 4002
)
"lib/xml.ml" 132 3933 3947 "lib/xml.ml" 132 3933 3948
type(
  M.elt
)
ident(
  def x "lib/xml.ml" 132 3933 3951 "lib/xml.ml" 132 3933 4002
)
"lib/xml.ml" 132 3933 3951 "lib/xml.ml" 132 3933 3961
type(
  output:(string -> unit) -> ?encode:(string -> string) -> M.elt list -> unit
)
ident(
  ext_ref print_list
)
"lib/xml.ml" 132 3933 3971 "lib/xml.ml" 132 3933 3993
type(
  Format.formatter -> string -> unit
)
ident(
  ext_ref Format.pp_print_string
)
"lib/xml.ml" 132 3933 3994 "lib/xml.ml" 132 3933 3997
type(
  Format.formatter
)
ident(
  int_ref fmt "lib/xml.ml" 132 3933 3943 "lib/xml.ml" 132 3933 3946
)
"lib/xml.ml" 132 3933 3970 "lib/xml.ml" 132 3933 3998
call(
  stack
)
type(
  string -> unit
)
"lib/xml.ml" 132 3933 4000 "lib/xml.ml" 132 3933 4001
type(
  M.elt
)
ident(
  int_ref x "lib/xml.ml" 132 3933 3947 "lib/xml.ml" 132 3933 3948
)
"lib/xml.ml" 132 3933 3999 "lib/xml.ml" 132 3933 4002
type(
  M.elt list
)
"lib/xml.ml" 132 3933 3951 "lib/xml.ml" 132 3933 4002
call(
  tail
)
type(
  unit
)
"lib/xml.ml" 133 4003 4007 "lib/xml.ml" 133 4003 4012
type(
  Format.formatter -> M.elt -> unit
)
ident(
  def print "lib/xml.ml" 133 4003 4058 "lib/xml.ml" 1 0 -1
)
"lib/xml.ml" 133 4003 4013 "lib/xml.ml" 133 4003 4016
type(
  Format.formatter
)
ident(
  def fmt "lib/xml.ml" 133 4003 4017 "lib/xml.ml" 133 4003 4058
)
"lib/xml.ml" 133 4003 4017 "lib/xml.ml" 133 4003 4018
type(
  M.elt
)
ident(
  def x "lib/xml.ml" 133 4003 4021 "lib/xml.ml" 133 4003 4058
)
"lib/xml.ml" 133 4003 4021 "lib/xml.ml" 133 4003 4035
type(
  Format.formatter ->
  ((Format.formatter -> M.elt -> unit) -> M.elt -> unit, Format.formatter,
   unit)
  format -> (Format.formatter -> M.elt -> unit) -> M.elt -> unit
)
ident(
  ext_ref Format.fprintf
)
"lib/xml.ml" 133 4003 4036 "lib/xml.ml" 133 4003 4039
type(
  Format.formatter
)
ident(
  int_ref fmt "lib/xml.ml" 133 4003 4013 "lib/xml.ml" 133 4003 4016
)
"lib/xml.ml" 133 4003 4040 "lib/xml.ml" 133 4003 4050
type(
  ((Format.formatter -> M.elt -> unit) -> M.elt -> unit, Format.formatter,
   unit)
  format
)
"lib/xml.ml" 133 4003 4051 "lib/xml.ml" 133 4003 4056
type(
  Format.formatter -> M.elt -> unit
)
ident(
  int_ref print "lib/xml.ml" 132 3933 3937 "lib/xml.ml" 132 3933 3942
)
"lib/xml.ml" 133 4003 4057 "lib/xml.ml" 133 4003 4058
type(
  M.elt
)
ident(
  int_ref x "lib/xml.ml" 133 4003 4017 "lib/xml.ml" 133 4003 4018
)
"lib/xml.ml" 133 4003 4021 "lib/xml.ml" 133 4003 4058
call(
  tail
)
type(
  unit
)