Ideas I got. skills...well they're a bit shy. What I'm doing now is pre-processing the source sample a little bit then passing it in as tokens instead of...
Here's an example of the kind of output I'm getting at the moment. as you can see it still needs work but it's coming along. Some help would still be great...
... If you wouldn't suspect but read what the underlying thesis contains, then you might understand that no one will ever get something "better" from this tool...
Hi All, I feel a little stupid, but... I tried the ANSI-C grammar (I need to extract certain declarations from a bunch of C-code and this seemed a good way to...
... Correct. The GOLD lexer has no state. ... One way is to use virtual terminals in conjunction with a peek into the symbol table along this lines "virtual...
... If I read You correctly this means: 1) add the above lines to the grammar. 2) add symbol table handling (insert typeId when reducing "<Decl> ::= <Typedef...
... Let me cite http://www.quut.com/c/ANSI-C-grammar-FAQ.html: "Q: Your grammar is broken! It doesn't parse this C program here! To parse full-fledged C source...
Hi all, I'm writing a firmware for a device that will read a script from a MMC and excute it. Also a PC emulator is needed to debug the scripts & simulate the...
I don't know about the engine in particular, but you can always instantiate it per thread which would by default make it thread safe :) If you're trying to...
could someone please point me in the right direction? why are all the rules (except program and programheader) producing an 'unreachable rule'? thanks, bob k....
Sorry for the double-send. Nothing references "value"; it seems that would unlock everything. At 03:18 PM 6/8/2007, rkamarowski wrote ... J. Merrill /...
i commented out the Value references and i'm still getting the unreachable warning. from looking at the examples it didn't seem like the order was critical,...
Normally "program" is not just the header -- it's a header followed by (for example) a statement (or a statement list, or begin statementlist end, or...
J, first, thanks for taking the time to answer my questions. i understand what you are saying. my question is (if i'm phrasing this correctly), why are the...
I have a grammar that contains the following: <Statement> ::= display <Expression> ... <Statements> end ... <Word List> ::= <Word> <Word List> ... <Word>...
Currently, Yahoo Groups is experiencing a SEVERE bug that has afflicted the service for the last couple days. It appears that no spam filtering is taking place...
It's been a couple days since the severe Yahoo Groups bug was fixed. As a result, at this point, it should be safe to enable the group. I still need to respond...
... Except you, nobody can decide which of both versions serves your purpose better, because your purpose is not given in your posting. To understand the...
... <I_think_that> The problem is with the rules for <Statement> <Statement> ::= <Interfaces>'.'<Action> '=' <BoolLiteral> ... After reducing <Interface1> the...
... Thank you Szczepan for your comments and observations. I think I now see why one version works and the other doesn't. The advice on the structure of the...
yeah I'm pretty sure that Szczepan has it on the dot with that analysis. I guess the pun is intended. ... [Non-text portions of this message have been removed]...
Hi, is there a complete example of say a calculator implemented in VBA for me to download somewhere? I guess I'd learn a lot quicker by extending the example. ...
... According to the pseudo code of the parse function the behaviour of GOLD is correct: inside comments tokens are built as usual, but then ignored. This...