Re: Parsing from continuous stream

2008-01-19 Thread Bob Rossi
On Sat, Jan 19, 2008 at 05:33:32PM +, Daniel Kraft wrote: > Hi, > > I'm trying to use GNU bison to parse from a "continuous" stream, that is, I > do want to implement a program similar to a shell: parse one "command" at > a time, process it, and continue until end-of-stream is encountered. >

Parsing from continuous stream

2008-01-19 Thread Daniel Kraft
Hi, I'm trying to use GNU bison to parse from a "continuous" stream, that is, I do want to implement a program similar to a shell: parse one "command" at a time, process it, and continue until end-of-stream is encountered. However, I do want my parser to return the parsed tree to the callin