From: thurston Date: Sat, 7 Apr 2007 20:09:02 +0000 (+0000) Subject: Added an item. X-Git-Tag: 2.0_alpha~316 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=834562de56f5b66f8a9d30dd7e20c0613eb935dc;p=external%2Fragel.git Added an item. git-svn-id: http://svn.complang.org/ragel/trunk@180 052ea7fc-9027-0410-9066-f65837a77df0 --- diff --git a/TODO b/TODO index f112b6f..958438a 100644 --- a/TODO +++ b/TODO @@ -32,6 +32,13 @@ The tokstart/tokend variable should be shortened to ts/te. ================ END 6.0 Features +Minimization should remove a condition when the character allows both +the positive and negative sense of the condition. This happens in: +test_every_10_chars = ( ( c when test_len ) c{0,9} )**; +In this example there is non-determinsm that is killed by the priorities, but +since conditions are expanded before priorities are tested, many transitions +end up with test_len || !test_len. + Should be possible to include scanner definitions in another scanner. Need a "write entry name;" feature.