Re: classical error but unresolved "syntax error at end of input"

2005-08-10 Thread soledady
I found the solution, the problem come from a function in the file SuiteTest.c i correct this and now it works but without the function. hope its clear thanks you for your help and your quick answer. bye soledady Le mercredi 10 août 2005 à 11:34 +0200, Hans Aberg a écrit : > On 9 Aug 2005,

classical error but unresolved "syntax error at end of input"

2005-08-09 Thread soledady
the result of the grammar file (*.y) compilation give me this error: "syntax error at end of input" I Know this is not really important but i don't find it and I can't test my grammar file I give you the code (begin and end of it) A warning appear to indicate that yyerror has been declared on imp

Re: [help-bison]How to stock information?

2005-07-20 Thread soledady
thanks fo your help... Le mercredi 20 juillet 2005 à 10:34 +0200, Hans Aberg a écrit : > On 20 Jul 2005, at 07:49, soledady wrote: > > > > can i construct a top-down grammar? > > It isn't the grammar that is top-down or not -- it is the parse tree > that one buil

Re: [help-bison]How to stock information?

2005-07-19 Thread soledady
Le mercredi 20 juillet 2005 à 01:42 +0200, Hans Aberg a écrit : thanks you very much for the quick answer! > > when I execute bison It builds a syntaxical tree (doesn't it?) > > Not really. Bison supplies the constructs so that you can build a > syntax trees in the parser, bottom up, if you s

[help-bison]How to stock information?

2005-07-19 Thread soledady
if you receive for twice time this message i'm sorry i made a mistake Hello, i'm using Bison for compute a mathematic tool to resolve this kind of thing: u(n)=u(n-1)+3*u(n-2);u{0}=1;u{1}=2; the example is very simple and this tools can do more things So the subject: when I execute bison It bui