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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 1285 - 1314 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1285
... So do you want to implement your own C# engine for the GOLD parser or do you just want to make a parser? In both cases you can use my Calitha engine as an...
Robert2275
rvl@...
Send Email
Apr 1, 2005
12:50 pm
1286
The situation is that I have to do a compiler (or a module maybe not complete) of a existing language. The language we have to build the compiler is C#. So, I...
michael_orfal
Offline Send Email
Apr 1, 2005
5:50 pm
1287
Writing a compiler for most modern languages consists of multiple steps. The first step is to run a parser to determine if the syntax is correct, while...
J. Merrill
jamesvmerrill
Offline Send Email
Apr 1, 2005
6:52 pm
1288
Hi, How I can stablish in my grammar EXACTLY 5 with a modifier? for example <myRule>? <-----0 o 1 if I want to stablish exactly 5 times, there is a...
michael_orfal
Offline Send Email
Apr 2, 2005
5:24 am
1289
... shift-reduce ... and infix ... Devin, to be ownest I have no idea about this operators. This is not my grammar, I only need it for work. As for me it's not...
pasha_golub
Online Now Send Email
Apr 4, 2005
7:56 am
1290
In a change of heart, NICOL now is like a functional language, but with imperative and object-oriented features. Your opinion will be greatly appreciated. You...
axilmar
Offline Send Email
Apr 4, 2005
1:45 pm
1291
Thanks for the answer, I changed the grammar and removed the {sign} in the terminals/lex part of the grammar and it worked fine. The sign was already in the...
ekimtrah2
Offline
Apr 5, 2005
2:35 am
1292
# This does not work though i think it should: {UnicodeCharacter} = {All Valid} - {&A0} "Invalid Character Constants" - Bug? If i use the {&n} specifier as...
marutsu_nokoni
spam0@...
Send Email
Apr 6, 2005
8:48 pm
1293
Yes, that appears to be a rather careless bug. I should have 2.6.1 out shortly....
Devin Cook
GOLD-Admin@...
Send Email
Apr 7, 2005
8:26 am
1294
In the meantime, you can use range notation (which does work) for a single character. {UnicodeCharacter} = {All Valid} - {&A0 .. &A0} !Necessary since Devin ...
Devin Cook
GOLD-Admin@...
Send Email
Apr 7, 2005
10:02 am
1295
Thanks a lot for the fast response! Don't worry, you are doing great. ... single ... Devin ... 3, Bug? ... {LineTerminatorCharacter} ... wrong?...
marutsu_nokoni
spam0@...
Send Email
Apr 7, 2005
12:31 pm
1296
Hello, my name is Enrique González, I started using the GOLD Parser a few days ago. I am making a small interpreter for C# statements. I am using Java grammar...
Enrique Javier Gonz€ ...
hotquik@...
Send Email
Apr 7, 2005
8:14 pm
1297
Hi, I have tried to install the latest version of GPB. I just wanted to let you know that the installation program (a 16-bit program) still crashes on systems...
Patrick Philippot
patphilippot
Offline Send Email
Apr 8, 2005
3:10 pm
1298
I just uploaded version 2.6.1 of the Builder which fixes this bug....
Devin Cook
GOLD-Admin@...
Send Email
Apr 9, 2005
9:19 am
1299
Excellent! I'll take a look at it....
Devin Cook
GOLD-Admin@...
Send Email
Apr 9, 2005
9:24 am
1300
Rules can be optional by specifying a nullable rule: <My Rule Opt> ::= <My Rule> | !Empty To make a rule appear exactly five times, the definition is a little...
Devin Cook
GOLD-Admin@...
Send Email
Apr 9, 2005
9:36 am
1301
Hello everyone, I just uploaded version 2.6.1 of the Builder. The changes are as follows: * Added some additional grammar checks. The checks are designed to ...
devindcook
Offline
Apr 9, 2005
9:47 am
1302
Devin, thanks for doing this job. Is there some news about my PostgreSQL dialect grammar? I am just interesting. I think this project is a good crush test for ...
pasha_golub
Online Now Send Email
Apr 10, 2005
8:34 pm
1303
I'll take a look at the program. The Visual Studio installation software can be a tad annoying at times. - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Apr 11, 2005
6:59 am
1304
That's very strange. Try recompiling the grammar using version 2.6.1 - which I recently uploaded the site. - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Apr 11, 2005
10:20 am
1305
Hi, I downloaded the 2.6.1 version. The grammar compiled fine, and I am getting the same error. Any clues ? Enrique ... 2.6.1 - which ... must ... ...
Enrique Javier Gonz€ ...
hotquik@...
Send Email
Apr 11, 2005
12:17 pm
1306
Hi again, I tried parsing the following expression with the java grammar that is on the website: public class Test { static string TestFunction () { return...
Enrique Javier Gonz€ ...
hotquik@...
Send Email
Apr 13, 2005
5:55 pm
1307
Do you get this problem too if you parse using the GOLD Builder? Or only if you use the Calitha engine?...
Robert2275
rvl@...
Send Email
Apr 13, 2005
7:15 pm
1308
I'm pretty sure its the grammar. The grammar is based directly off the grammar found on Sun Microsystem's website. Like the offical C# grammar, its very...
Devin Cook
GOLD-Admin@...
Send Email
Apr 13, 2005
7:36 pm
1309
I just discovered that the problem is being caused by an bug in the LR table construction algorithm. More specifically, it occurs in the partial closures that...
Devin Cook
GOLD-Admin@...
Send Email
Apr 13, 2005
8:41 pm
1310
subj...
olekhov
Offline Send Email
Apr 13, 2005
9:01 pm
1311
When I try to load a corrupted CGT file with LoadCompiledGrammar(..) this function return False and CGT file remains used by process. GP.Clear, GP.Reset do not...
olekhov
Offline Send Email
Apr 13, 2005
9:05 pm
1312
Thanks for investigating my problem :D Good luck in fixing the bug :) Enrique ... the LR table ... partial closures ... most ... is "inherited" from ... Or ......
Enrique Javier Gonz€ ...
hotquik@...
Send Email
Apr 13, 2005
9:17 pm
1313
Hello there, Try visiting this well listed Directory on Computers and Internet! ... Here is the link http://hi-fiweb.com/comp Hoping to learn a lot from other...
smitha_telecom
Offline Send Email
Apr 14, 2005
3:16 am
1314
I have released a beta of 2.6.2. Everyone can download a replacement exe from: http://www.devincook.com/goldparser/builder-2-6-2-beta-exe.zip - Devin...
Devin Cook
GOLD-Admin@...
Send Email
Apr 14, 2005
6:08 am
Messages 1285 - 1314 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