bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03-fyi-todo.patch


From: Akim Demaille
Subject: 03-fyi-todo.patch
Date: Sun, 07 Apr 2002 17:23:00 +0200

Index: ChangeLog
from  Akim Demaille  <address@hidden>
        * TODO: Update.
        
        
Index: TODO
--- TODO Sat, 26 Jan 2002 15:02:41 +0100 akim
+++ TODO Sat, 23 Mar 2002 13:45:12 +0100 akim
@@ -1,5 +1,27 @@
 -*- outline -*-
 
+* Unit rules
+Maybe we could expand unit rules, i.e., transform
+
+       exp: arith | bool;
+       arith: exp '+' exp;
+       bool: exp '&' exp;
+
+into
+
+       exp: exp '+' exp | exp '&' exp;
+
+when there are no actions.  This can significantly speed up some
+grammars.
+
+* Useless rules
+We have all the needed material to actually remove them.  Do it.
+Or maybe not, but at least do not include them in the automaton.
+
+* read_pipe.c
+This is not portable to DOS for instance.  Implement a more portable
+scheme.  Sources of inspiration include GNU diff, and Free Recode.
+
 * NEWS
 Sort from 1.31 NEWS.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]