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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1476 - 1506 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1476
I have updated VBScript grammar: 1. "With" statement added 2. Identifiers are allowed to have a dot in front of them to be used inside of "With" statement. The...
Vladimir Morozov
vmorozov72
Offline Send Email
Jun 1, 2005
7:34 am
1477
... I like C# as a language. With a very small amount of relatively easy work I can write cross-platform C# that will play with all the other CLI languages...
Max Battcher
world_maker
Offline Send Email
Jun 1, 2005
11:09 am
1478
Hello everyone, ... 1. A new version of the Java Engine is available! ... A new version of Mathew Hawkin's popular Java Engine is now available. The new...
Devin Cook
GOLD-Admin@...
Send Email
Jun 1, 2005
11:28 am
1479
To Max: I haven't checked Mono, so that's an omission and something to do. Largely it depends on your language of choice. Many languages now compile to the...
john cork
johnmcork
Offline Send Email
Jun 1, 2005
10:21 pm
1480
Dear friends, The new stable version of LUDO Scripting Engine is released. You can download LUDO Scripting Engine at the following link: ...
Eylem Uðurel
eylemugurel
Offline Send Email
Jun 2, 2005
7:29 am
1481
Gone with the wind...it will surface again as a real programming language, when the compiler is ready! Right now I am making the compiler (using C++), and I...
axilmar
Offline Send Email
Jun 2, 2005
3:33 pm
1482
Hi there, This is probably a very stupid question. I've written and grammar and it parses some source correctly using the ActiveX DLL. My question is, how do I...
roworthm_friends
roworthm_fri...
Offline
Jun 3, 2005
5:51 pm
1483
Reduction has collection of tokens. Non terminal tokens have reference to a reduction. So the tree is formed by Reduction-Token-Reduction constructions. This...
Vladimir Morozov
vmorozov72
Offline Send Email
Jun 4, 2005
1:05 am
1485
Thanks Vlad, but to be honest I still haven't got the hang of it. I've successfully parsed the source file and have accessed the top level reduction using...
roworthm_friends
roworthm_fri...
Offline
Jun 5, 2005
11:34 am
1486
I good way to see what happens, is to download one of the sample projects. For the ActiveX DLL, there is a project that prints the parse tree and another that...
Devin Cook
GOLD-Admin@...
Send Email
Jun 5, 2005
12:07 pm
1487
Vladimir, You have my vote to publish. Using less memory is always a good thing. Ad. ... Reduction has collection of tokens. Non terminal tokens have...
adrian.r.moore@...
Send Email
Jun 6, 2005
2:29 pm
1488
The new version of the C# engine can be downloaded from http://www.notebar.com/VBScriptParser/GoldParser_1_1.zip Key changes in this version: 1. DFA transition...
Vladimir Morozov
vmorozov72
Offline Send Email
Jun 7, 2005
5:41 am
1489
Guys, if you are C++ developers, then I have something for you: I have developed a C++ parser that allows the specification of EBNF-like grammars using...
axilmar
Offline Send Email
Jun 7, 2005
9:40 pm
1490
... Welcome back, I missed you. I also found your other stuff related to Lambda Calulus, but group theory rules. Will it check out. Thanks John...
john cork
johnmcork
Offline Send Email
Jun 7, 2005
10:28 pm
1491
As far as I know Gold is the only tool that generates a "grammar table" that generic parser engines use when parsing source code. Other parser toolkits...
john cork
johnmcork
Offline Send Email
Jun 8, 2005
2:49 am
1492
Eh? I fail to see the relation with PTK. Could you please elaborate?...
axilmar
Offline Send Email
Jun 8, 2005
7:42 am
1493
Hello everybody, I'm trying to define a rule to parse comma separated values. Can anybody help me. e.g. values = DATATYPE DT_FLOAT...
thomas_ploeger
Offline Send Email
Jun 8, 2005
10:00 am
1494
If I understand correctly you simply have to define <Result> rule as the following: ! You probably want it to be optional <DecOrNot> ::= DecSign ... ! Use the...
Vladimir Morozov
vmorozov72
Offline Send Email
Jun 8, 2005
11:42 am
1495
Thank you very much. I was so blind. Thomas ... as ... <T_Ploeger@t...> ... DT_FLOAT ,500.,700.,900.,1100.,1300.,1400.,1600.,1800.,2000.,2200.,24...
thomas_ploeger
Offline Send Email
Jun 8, 2005
12:55 pm
1496
I have not yet drunk much UML kool-aid. I'm now reading a book "Holub on Patterns" by Allen Holub (Apress). He has an interesting diagram where he follows the...
J. Merrill
jamesvmerrill
Offline Send Email
Jun 8, 2005
2:30 pm
1497
"I fail to see the relation with PTK" The relevance is that you are throwing the baby out with the bathwater." Generating a grammar table is a must for a...
john cork
johnmcork
Offline Send Email
Jun 8, 2005
6:54 pm
1498
... Why not code the grammar directly with C++? today i've made in a couple of hours a fine Java tokenizer than can tokenize an 4700 LOC file (145k) in under...
axilmar
Offline Send Email
Jun 8, 2005
10:11 pm
1499
... classes, ... There can be different cases. Before using GOLD Parser I programmed my parsers directly in Delphi. It was similar to approach described in the...
Vladimir Morozov
vmorozov72
Offline Send Email
Jun 9, 2005
1:06 am
1500
1. "Handling complexity" from Vlad. To extend this point, the grammar and parser are part of a complex system and you end up re coding everything, and...
john cork
johnmcork
Offline Send Email
Jun 9, 2005
2:55 am
1501
... That's right, but my parser actually does just that: it keeps the grammar separate from parsing events, and thus the design is very clear, and the grammar...
axilmar
Offline Send Email
Jun 9, 2005
10:14 am
1502
Hi All Apologies for a newbie question or two. I am trying to create a compiler for a grammer which I am using to program a flight simulator program. The...
jon_masterson
Offline Send Email
Jun 9, 2005
8:29 pm
1503
Having read this I see I have just posted pretty much the same question. It is proably my deep lack of understanding of bottom up parsing but the examples I...
jon_masterson
Offline Send Email
Jun 9, 2005
8:39 pm
1504
Jon, The following article might help: http://www.codeproject.com/dotnet/IntrotoGoldParser.asp Ad. "jon_masterson" <jon@...>@yahoogroups.com ...
adrian.r.moore@...
Send Email
Jun 9, 2005
9:45 pm
1505
Yes there is a lot of work to build a complete compiler. Then there is even more to produce a complete IDE from text editor to debugger. Not a job for one...
john cork
johnmcork
Offline Send Email
Jun 10, 2005
2:15 am
1506
Thanks Adrian I have read your article but I guess I did not read it carefully enough the first time 8-( Jon...
jon_masterson
Offline Send Email
Jun 10, 2005
7:17 am
Messages 1476 - 1506 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