Search the web
Sign In
New User? Sign Up
GOLDParser · GOLD Parsing System
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3021 - 3056 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3021
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...
Kelly Parker
bigblockfw
Offline Send Email
Jun 1, 2007
1:38 pm
3022
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...
Kelly Parker
bigblockfw
Offline Send Email
Jun 2, 2007
12:42 am
3023
... 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...
svv1999
Offline Send Email
Jun 2, 2007
8:16 am
3024
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...
zionemo
Offline Send Email
Jun 5, 2007
5:20 pm
3025
... 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...
svv1999
Offline Send Email
Jun 5, 2007
7:34 pm
3026
... 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...
zionemo
Offline Send Email
Jun 5, 2007
8:05 pm
3027
... 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...
svv1999
Offline Send Email
Jun 5, 2007
9:42 pm
3028
I'm using the klimstra engine (modified by Adrian Moore), justed to know if it's thread safe....
pschana
Offline Send Email
Jun 6, 2007
1:05 pm
3029
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...
wh_hsn
Offline Send Email
Jun 7, 2007
2:21 pm
3030
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...
Spam Catcher
aldousd666
Offline Send Email
Jun 7, 2007
3:39 pm
3031
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....
rkamarowski
Online Now Send Email
Jun 8, 2007
8:19 pm
3032
At 03:18 PM 6/8/2007, rkamarowski wrote ... J. Merrill / Analytical Software Corp...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 9, 2007
7:28 pm
3033
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 /...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 9, 2007
7:29 pm
3034
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,...
rkamarowski
Online Now Send Email
Jun 9, 2007
7:47 pm
3036
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. Merrill
jamesvmerrill
Offline Send Email
Jun 10, 2007
1:13 am
3037
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...
rkamarowski
Online Now Send Email
Jun 10, 2007
2:28 pm
3038
J, the light came on (finally!). i have it working now. thanks, bob k. ... like...
rkamarowski
Online Now Send Email
Jun 10, 2007
3:53 pm
3039
I have a grammar that contains the following: <Statement> ::= display <Expression> ... <Statements> end ... <Word List> ::= <Word> <Word List> ... <Word>...
bobmre56
Offline
Jun 17, 2007
5:17 pm
3045
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...
devindcook
Offline
Jun 22, 2007
1:22 pm
3046
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...
devindcook
Offline
Jun 25, 2007
5:09 pm
3047
Hi, I really hope somone can help with the following question. I've read all the documentation on the GoldParser help, including the sections about...
Neville Southworth
nevjs
Offline Send Email
Jun 26, 2007
12:09 pm
3048
... 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...
svv1999
Offline Send Email
Jun 26, 2007
6:41 pm
3049
... <I_think_that> The problem is with the rules for <Statement> <Statement> ::= <Interfaces>'.'<Action> '=' <BoolLiteral> ... After reducing <Interface1> the...
Szczepan Hoyszewski
rulatir
Offline Send Email
Jun 26, 2007
9:34 pm
3050
... And of course also: <Interface> ::= Identifier ... Now the first check makes sense too. Szczepan Holyszewski...
Szczepan Hoyszewski
rulatir
Offline Send Email
Jun 26, 2007
9:44 pm
3051
... 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...
nevjs
Offline
Jun 27, 2007
3:32 pm
3052
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]...
Spam Catcher
aldousd666
Offline Send Email
Jun 27, 2007
4:49 pm
3053
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. ...
b.developer
Offline Send Email
Jun 28, 2007
2:03 am
3054
Observe the following grammar: "Start Symbol" = <Program> Comment Line = '--' Comment Start = '/*' Comment End = '*/' {ID Head} = {Letter} + [_$] ...
martijnhavinga
Offline Send Email
Jun 28, 2007
6:41 am
3055
... http://www.codeproject.com/dotnet/IntrotoGoldParser.asp...
user923005
Offline Send Email
Jun 28, 2007
8:14 am
3056
... 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...
svv1999
Offline Send Email
Jun 29, 2007
5:48 am
Messages 3021 - 3056 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help