summaryrefslogtreecommitdiff
path: root/issues/issues.xml
blob: 09af35c7736aab38834c9f84dde91818eb37590e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
<?xml version="1.0" encoding="UTF-8"?>
<issues type="array">
  <issue>
    <id>342</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>eliminate series of test functions from the input stream interface</subject>
    <description>rather than calling a series of tests for exceptional situations, us one main get data function and return the exceptional circumstances from that. This is helpful in the split between wrapper and implementation streams.</description>
    <start_date>2011-12-29</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Thu Dec 29 10:37:42 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:38 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>341</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>split input stream into two: wrapper and implementation streams</subject>
    <description>The wrapper act as a stream of streams. The implementation stream (source stream) will provide data. Both need a refcounted tree struct so they can be stored in multiple accumulators, which will happen mostly due to sub-parsers.</description>
    <start_date>2011-12-29</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Thu Dec 29 10:35:27 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:30 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>340</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>eliminate sharing of buffer space between FSM run and input stream</subject>
    <description>Copy data into the FSM run. Consume it in the input stream when tokens are produced. This implementation will be more robust.</description>
    <start_date>2011-12-27</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Tue Dec 27 12:33:55 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:25 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>337</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>need a reverse execution 'deck'</subject>
    <description>This concept will allow us to disassociate reverse execution from tokens, which is currently binding us somewhat.</description>
    <start_date>2011-12-04</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Dec 04 12:59:11 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:18 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>336</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>eliminate notoken</subject>
    <description>Wasteful. Can probably be removed with more careful computation of steps (formally consumed).</description>
    <start_date>2011-12-02</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Dec 02 19:49:10 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:13 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>335</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.4" id="31"/>
    <subject>naming attributes in cons is inconsistent with the use of colon for capture</subject>
    <description>Eliminate this. Just go with positions.</description>
    <start_date>2011-11-27</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Nov 27 17:52:37 -0800 2011</created_on>
    <updated_on>Sat Jan 21 14:04:06 -0800 2012</updated_on>
  </issue>
  <issue>
    <id>333</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>don't attach ignores until the token is shifted</subject>
    <description></description>
    <start_date>2011-11-17</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Thu Nov 17 22:08:47 -0800 2011</created_on>
    <updated_on>Sun Nov 20 14:29:13 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>332</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>eliminate possibility of recursive calls to bytecode execution</subject>
    <description>requires factoring out the reduction and token generation actions.</description>
    <start_date>2011-11-06</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Nov 06 20:16:04 -0800 2011</created_on>
    <updated_on>Tue Nov 15 17:40:48 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>331</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>parse errors should not cause errors to be printed to stderr/stdout</subject>
    <description>Cannot assume it is okay to use output. Store the error for access.</description>
    <start_date>2011-10-31</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Mon Oct 31 00:01:32 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:41:53 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>330</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>parse errors cannot be printed</subject>
    <description>Store them instead. They can be printed in the program if needed, or exported to the program that the colm program is embedded in.</description>
    <start_date>2011-10-30</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Oct 30 16:28:52 -0700 2011</created_on>
    <updated_on>Sun Nov 20 15:13:44 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>329</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>automatic access to RHS elements</subject>
    <description>Allow access to RHS elements. Useful for extraction of data.</description>
    <start_date>2011-10-26</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed Oct 26 09:09:08 -0700 2011</created_on>
    <updated_on>Sun Nov 20 14:35:51 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>328</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>embeddable in other programs</subject>
    <description>Should be possible to link a colm program into another C/C++ program.</description>
    <start_date>2011-10-22</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Oct 22 10:45:07 -0700 2011</created_on>
    <updated_on>Sun Nov 20 14:36:00 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>327</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>parse error cannot cause fatal error</subject>
    <description>generally there can be none, but parsing is critical</description>
    <start_date>2011-10-21</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Oct 21 20:29:08 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:41:23 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>326</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>print the deepest error, it is more accurate</subject>
    <description>May also consider printing a list of errors sorted by depth</description>
    <start_date>2011-10-21</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Oct 21 20:01:00 -0700 2011</created_on>
    <updated_on>Sun Nov 20 14:36:05 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>325</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>XML printing off of main print function</subject>
    <description>Need to have only one print loop as the complexity increases.</description>
    <start_date>2011-10-09</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Oct 09 10:29:08 -0700 2011</created_on>
    <updated_on>Sat Nov 05 14:54:59 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>324</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>exit cannot call c exit function</subject>
    <description>must break out of the execution loop, then any loops higher up.</description>
    <start_date>2011-10-08</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Oct 08 22:21:02 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:41:02 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>323</id>
    <project name="Colm" id="2"/>
    <tracker name="Research" id="4"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>ignore tokens with generations, on both sides of tokens, and stored in child lists</subject>
    <description>Try out a new method of storing ignore tokens. Generations for replacement without seraching and modifying.

Put them on both sides of tokens.

Put them in child lists.</description>
    <start_date>2011-09-17</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Sep 17 13:58:35 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:44:58 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>322</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>better syntax for &lt;&lt; and .finish(): send Parser [stuff] and Parser()</subject>
    <description>The &lt;&lt; operator and the .finish() call have both always stood out. Try out a replacement.

send Parser "stuff
Start: start = Parser()</description>
    <start_date>2011-09-16</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Sep 16 09:13:43 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:44:22 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>318</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>function for stripping ignore tokens</subject>
    <description></description>
    <start_date>2011-08-07</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Aug 07 22:34:44 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:44:03 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>317</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>single literal strings cannot be concatenated</subject>
    <description>Single literal strings cannot be concatenated because they are not LitPat tokens. They are Literals, and parsed differently in productions and patterns. But they are available in code. This inconsistency is somewhat confusing.</description>
    <start_date>2011-08-07</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Aug 07 10:41:07 -0700 2011</created_on>
    <updated_on>Tue Nov 15 17:43:08 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>316</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>compilation error in fsm code generation</subject>
    <description>&lt;pre&gt;
lex all
{       
    ignore /'#' any* '\n'/
            
    token word /[^#\n]+/
    token NL /'\n'/
}       
&lt;/pre&gt;</description>
    <start_date>2011-08-07</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Aug 07 10:11:29 -0700 2011</created_on>
    <updated_on>Sun Aug 07 10:14:37 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>313</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>allow the ending ' of single literal strings to be omitted, ending at newline</subject>
    <description>This will make single literal strings consistent with ~ and " strings.</description>
    <start_date>2011-08-01</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Mon Aug 01 22:49:26 -0700 2011</created_on>
    <updated_on>Mon Aug 01 22:53:23 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>312</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>sending long strings to a parser</subject>
    <description>Assertion failure in inputStreamAccumAppendData prevents sending long strings to a parser.</description>
    <start_date>2011-08-01</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Mon Aug 01 09:15:12 -0700 2011</created_on>
    <updated_on>Mon Aug 01 22:53:48 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>310</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>compilation error: single token in region, where token accepts everything</subject>
    <description>&lt;pre&gt;

token all /any*/

def start 
    [all]

parse Start: start( stdin )

print( Start )

&lt;/pre&gt;</description>
    <start_date>2011-07-31</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Jul 31 10:12:51 -0700 2011</created_on>
    <updated_on>Sun Aug 07 10:14:49 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>309</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>the -v option should print the version</subject>
    <description></description>
    <start_date>2011-07-31</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Jul 31 10:08:31 -0700 2011</created_on>
    <updated_on>Sun Jul 31 10:13:09 -0700 2011</updated_on>
  </issue>
</issues>
<issues type="array">
  <issue>
    <id>308</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>fix "ref tree*"</subject>
    <description>Parsed as "(ref tree)*" when it should be parsed as "ref (tree*)".

</description>
    <start_date>2011-07-26</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Tue Jul 26 21:35:37 -0700 2011</created_on>
    <updated_on>Wed Jul 27 19:51:17 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>305</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>add alias statement, which can be used to alias a type</subject>
    <description>This is important now that we reference maps and lists using inline typerefs, rather than declaring them. Complicated maps get tedius to write out over and over again.</description>
    <start_date>2011-07-15</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Jul 15 23:33:35 -0700 2011</created_on>
    <updated_on>Wed Jul 27 19:51:03 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>304</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>typeid arg should be wrapped in &lt;&gt; (to match map, list, etc)</subject>
    <description></description>
    <start_date>2011-07-12</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Tue Jul 12 19:53:55 -0700 2011</created_on>
    <updated_on>Tue Jul 12 19:59:34 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>298</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>independent declare and resolve passes</subject>
    <description>The declare/resolve pass(es) need to be made independent of the parser and compile pass. Need to lookup types after parsing because we support use before declaration, and we need to do lookups before compilation because some lookups cause new tree types to be declared (generics).</description>
    <start_date>2011-06-19</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun Jun 19 15:44:44 -0700 2011</created_on>
    <updated_on>Sun Jul 10 11:26:32 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>297</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>the check for installed vs source based running doesn't cover a common case.</subject>
    <description>Doesn't work when we specify the full path to the binary.</description>
    <start_date>2011-06-03</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Jun 03 00:29:57 -0700 2011</created_on>
    <updated_on>Wed Jul 27 19:57:36 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>296</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>config.h.in is checked in, but also generated, stop generation</subject>
    <description>fails the build</description>
    <start_date>2011-05-28</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat May 28 18:39:26 -0700 2011</created_on>
    <updated_on>Wed Jul 27 19:56:53 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>295</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>unnamed generics using &lt;type_args&gt; as the syntax</subject>
    <description>Form 'map&lt;foo bar&gt;'

This will require a proper type grammar and improvements to type references.

Currently the generic types are declared like productions. This is very confusing since they are more like C++ templates. They are a predefined type that has arguments. Adopting the &lt;args&gt; syntax for type args.</description>
    <start_date>2011-05-25</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed May 25 22:04:01 -0700 2011</created_on>
    <updated_on>Tue Jul 12 20:01:05 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>294</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>add tests to the dist</subject>
    <description>Tests are not currently bundled with the dist, they should be.</description>
    <start_date>2011-05-23</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Mon May 23 21:56:58 -0700 2011</created_on>
    <updated_on>Sun Jul 31 10:09:03 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>290</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.2" id="26"/>
    <subject>declare variables that capture produced tree in construct and parse statements</subject>
    <description>This is a natural extension to the variable declaration/capture syntax that is found all over the language.</description>
    <start_date>2011-05-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri May 20 14:19:34 -0700 2011</created_on>
    <updated_on>Wed Jul 27 19:57:48 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>284</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.1" id="1"/>
    <subject>convert to automake</subject>
    <description></description>
    <start_date>2011-05-11</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed May 11 11:47:05 -0700 2011</created_on>
    <updated_on>Tue May 17 20:09:05 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>246</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.1" id="1"/>
    <subject>Remove commas from parameter lists, expression lists</subject>
    <description>Why: consistency, copy-paste patterns, constructors, grammars to-from parameter and argument lists.</description>
    <start_date>2011-03-30</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed Mar 30 12:02:16 -0700 2011</created_on>
    <updated_on>Tue May 17 20:11:57 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>243</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.1" id="1"/>
    <subject>add 'dist' target to the makefile</subject>
    <description>Need this for initial release.</description>
    <start_date>2011-03-23</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed Mar 23 17:07:37 -0700 2011</created_on>
    <updated_on>Tue May 17 20:12:32 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>242</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.1" id="1"/>
    <subject>test suite failes on 64bit</subject>
    <description></description>
    <start_date>2011-03-23</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed Mar 23 17:06:17 -0700 2011</created_on>
    <updated_on>Tue May 17 20:08:07 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>241</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Completed" id="7"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.1" id="1"/>
    <subject>all variable declarations to be in pattern style "Name: type"</subject>
    <description>It can be difficult to move from looking at variable declarations in patterns then to local variables and function arguments because the name and type change order. Make them all pattern-style in the name of consistency.</description>
    <start_date>2011-03-23</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Wed Mar 23 17:04:36 -0700 2011</created_on>
    <updated_on>Tue May 17 20:12:08 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>96</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>need to fix construct with ignore lists</subject>
    <description>broken with new ignore storage format </description>
    <start_date>2010-05-09</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sun May 09 11:28:08 -0700 2010</created_on>
    <updated_on>Thu Dec 30 21:20:31 -0800 2010</updated_on>
  </issue>
  <issue>
    <id>54</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>need a syntax for constructing tokens with a str</subject>
    <description>Currently using parse, which is just way too much overhead for just a token.</description>
    <start_date>2010-03-27</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 27 11:17:52 -0700 2010</created_on>
    <updated_on>Sat Mar 27 11:17:52 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>53</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>print_xml_ac fails when used at end of commitbt.lm</subject>
    <description></description>
    <start_date>2010-03-27</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 27 01:03:53 -0700 2010</created_on>
    <updated_on>Sat Mar 27 01:03:53 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>52</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>translate block with no send causes crash</subject>
    <description></description>
    <start_date>2010-03-26</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Fri Mar 26 23:58:56 -0700 2010</created_on>
    <updated_on>Fri Mar 26 23:58:56 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>51</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>using stdin.pull in a token transformation results in IN_HALT</subject>
    <description>can be shown with the commitbt.lm test case. Change input.pull to stdin.pull.</description>
    <start_date>2010-03-25</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Thu Mar 25 17:58:09 -0700 2010</created_on>
    <updated_on>Thu Mar 25 17:58:09 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>50</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>sending back artificicial tokens with ignore</subject>
    <description>Where does the ignore come from? The artificial token or from the the stream? Need to record this info and use it during backtracking

&lt;pre&gt;
lex start
{
    ignore /[ \t]+/
    literal '*', '(', ')', '^', ';', '\n', '.'
    token id /[a-zA-Z_]+/
}

parser out_parser [out]
global out_parser Out = construct out_parser []

def out_item
    [id]
|   ['(' item* ')']

def out 
    [out_item*]

def item 
    [id]
    {
        Out &lt;&lt; r1
    }
|   ['(' item* ')']
    {
#       Out &lt;&lt; '('
#       Out &lt;&lt; r2
#       Out &lt;&lt; ')'
    }

def A1 []
def A2 []

def F
    []
    {
        #Out.finish()
    }

def start 
    [A1 item* F '.' '^']
|   [A2 item* F '.' ';' '\n']

start Input = parse start( stdin )
print( Input )
&lt;/pre&gt;</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 18:31:54 -0700 2010</created_on>
    <updated_on>Sat Mar 20 21:57:25 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>49</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>PARSE_FINISH_BKT not implemented</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 13:19:33 -0700 2010</created_on>
    <updated_on>Thu Mar 25 17:59:35 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>42</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>rudimentary pattern matching during parsing</subject>
    <description>Needed so we can require that IDs have certain values instead of forcing a keyword.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:53:49 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:53:49 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>41</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>some colm parse errors take a really long time to be known</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:53:24 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:53:24 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>40</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>ref output in function call introduces leaks</subject>
    <description>working on a new code generator and as soon as ref output in a function call is introduces there are leaks</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:53:10 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:53:10 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>39</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>parse accumulator crashes if required to backtrack</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:52:52 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:52:52 -0700 2010</updated_on>
  </issue>
</issues>
<issues type="array">
  <issue>
    <id>38</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>Really need ?expr in pattern matches.</subject>
    <description>Pain doing it after the pattern.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:52:33 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:52:33 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>37</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>need a list concatenation operator</subject>
    <description>List1 . List2 should put List2 on end of List1 (requires same type, or list1 == list2*).</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:52:14 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:52:14 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>36</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>syntax highlighting deficiency</subject>
    <description>The parse keyword isn't highlighted properly.

&lt;pre&gt;
Output &lt;&lt;
        "#ifndef _[f( parse something(Tree) )]
&lt;/pre&gt;</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:51:54 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:51:54 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>35</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>can't match against a terminal</subject>
    <description>need this</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:51:24 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:51:24 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>34</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>error location in included files is wrong</subject>
    <description>report file that included the file that the error was in</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:51:02 -0700 2010</created_on>
    <updated_on>Sun Nov 20 14:36:12 -0800 2011</updated_on>
  </issue>
  <issue>
    <id>33</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>exit function</subject>
    <description>an exit function is necessary.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:50:44 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:50:44 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>32</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>assertion failure on unparsable input</subject>
    <description>run with args: ./tmp.bin -qv -h -o output -ieth0 file

Fails due to '0' in -i arg. Instead of parse error, an assertion fails.
&lt;pre&gt;
lex args
{   
    literal '-'
    token file /^('-'|0)(^0)*/
}

token word /(^0)+/
token zero /0/ 

lex opts
{
    token single /[qvh]/
    token with_opt /[oi]/
}

def item
    [file zero]
|   ['-' single* zero]
|   ['-' with_opt zero? zero]

def args 
    [word zero item*]

accum arg_parser [args] 
arg_parser ArgParser =
    construct arg_parser []
    
argv_list ArgV = argv
for A: str in ArgV 
    ArgParser &lt;&lt; [A '\0']
        
args Args = ArgParser.finish() 

print_xml( Args )

&lt;/pre&gt;
</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:50:26 -0700 2010</created_on>
    <updated_on>Sat Mar 20 11:24:30 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>31</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>parse accumulator forces token boundaries on each call</subject>
    <description>Not possible for a token to span calls to the fragment parser. This imposes a restriction.

Might be done.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:49:51 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:49:51 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>30</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Fixed" id="8"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <fixed_version name="0.3" id="30"/>
    <subject>\0 does not work as expected in "" strings</subject>
    <description>works in '' strings, but does not in "" strings.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:48:58 -0700 2010</created_on>
    <updated_on>Mon Aug 01 22:53:10 -0700 2011</updated_on>
  </issue>
  <issue>
    <id>29</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>Need to support all arguments, not just argv1.</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:48:36 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:48:36 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>28</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>need -I option</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:48:23 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:48:23 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>27</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>optimize longest match operator</subject>
    <description>forget what this means</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:48:12 -0700 2010</created_on>
    <updated_on>Sat Mar 20 11:02:42 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>26</id>
    <project name="Colm" id="2"/>
    <tracker name="Research" id="4"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>regex subexpression capture</subject>
    <description>This may be finished. Need to investigate.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:47:55 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:47:55 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>25</id>
    <project name="Colm" id="2"/>
    <tracker name="Research" id="4"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>optimization of reference chains</subject>
    <description>I think this is done already. Need to verify.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:47:40 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:47:40 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>24</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>string manipulation library needs expansion</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:46:56 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:46:56 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>23</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>integer expressings not complete</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:46:40 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:46:40 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>22</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>garbage collector needs work</subject>
    <description></description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:46:29 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:46:29 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>21</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>eradicate the use of replItemList</subject>
    <description>The replacement, accumulator, and string concat sections of the grammar all use this global (to Parser). This is problematic in the face of recursion. It should be replaced with code that passes the list up through the productions.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:46:12 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:46:12 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>20</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>the constructex.lm test case is broken, does not compile.</subject>
    <description>This needs to be fixed.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:45:42 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:45:42 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>19</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>embedding a colm program into a host C/C++ program</subject>
    <description>This is a desirable feature. Requires returning a tree providing some means of walking the returned tree.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:45:20 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:45:20 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>18</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>printing to named streams is necessary</subject>
    <description>Need to be able to write to stderr and to arbitrary files.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:44:54 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:44:54 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>17</id>
    <project name="Colm" id="2"/>
    <tracker name="Feature" id="2"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>need to support full argument list</subject>
    <description>Currently only supporting argv1. Instead all args need to go into a list of strings.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:44:30 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:44:30 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>16</id>
    <project name="Colm" id="2"/>
    <tracker name="Research" id="4"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>sub patterns and sub constructs</subject>
    <description>maybe use ( ) for these

type( construct ) for sub-construct
Name: type ( pattern ) for sub-pattern

</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:44:00 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:44:00 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>15</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>mutually recursive functions are not possible</subject>
    <description>This needs to be fixed.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:43:17 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:43:17 -0700 2010</updated_on>
  </issue>
  <issue>
    <id>14</id>
    <project name="Colm" id="2"/>
    <tracker name="Bug" id="1"/>
    <status name="Closed" id="5"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>include needs to honour the path of the source file</subject>
    <description>Include needs to honour the path of the source file as a prefix when searching for the file to include. This allows colm to be called with a CWD that is not the one the source is in.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:42:54 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:42:54 -0700 2010</updated_on>
  </issue>
</issues>
<issues type="array">
  <issue>
    <id>13</id>
    <project name="Colm" id="2"/>
    <tracker name="Research" id="4"/>
    <status name="New" id="1"/>
    <priority name="Normal" id="4"/>
    <author name="Adrian Thurston" id="3"/>
    <assigned_to name="Adrian Thurston" id="3"/>
    <subject>put position information in the Head struct</subject>
    <description>This may be a good place for it, rather than in all trees. Heads represent strings, which are the entities that have the position information.</description>
    <start_date>2010-03-20</start_date>
    <due_date></due_date>
    <done_ratio>0</done_ratio>
    <estimated_hours></estimated_hours>
    <custom_fields>
    </custom_fields>
    <created_on>Sat Mar 20 10:42:24 -0700 2010</created_on>
    <updated_on>Sat Mar 20 10:42:24 -0700 2010</updated_on>
  </issue>
</issues>