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 your group to be featured on the Yahoo! Groups website? 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 351 - 381 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
351
Dear Devin, could you please add new symbol kind to your great program which describes preprocessing directive? It will be very nice feature which let me...
adaskothebeast
Offline Send Email
Mar 1, 2004
1:58 pm
352
You can simulate it via the lexer (DFA states). I posted a code sample earlier. Similar to how a string begins and ends with "" you create a ...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 1, 2004
6:00 pm
353
Hello Mr. Battcher, I try to avoid bloating my grammar. I write my IT certificate about fractals and there are many public resources on fractal formulas in the...
adaskothebeast
Offline Send Email
Mar 1, 2004
9:25 pm
354
... Whole different can of worms there. Most people who complain about this are not using line-based grammars. Something like: <NL> := NewLine ... --Max...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 1, 2004
10:27 pm
355
Yes, it works with UltraFractal formulas (grammar is line based) but Chaos Pro uses language similar to C (grammar is not line based) but now after some test I...
adaskothebeast
Offline Send Email
Mar 1, 2004
10:43 pm
357
Sorry about the delay. The Builder creates files that support the full Unicode character set; however, the testing tool is very limited. - Devin ... From:...
Devin Cook
devindcook
Offline Send Email
Mar 3, 2004
8:52 pm
358
That's a really clever approach. Wow. I would have never thought of that. ... From: Max Battcher / WorldMaker [mailto:me@...] Sent: Monday, March...
Devin Cook
devindcook
Offline Send Email
Mar 3, 2004
9:01 pm
359
Again. Sorry about the delay in responding. I'm trying to parse SQL with GOLD Parser. ... Very true. The grammar is very far from elaborate. You can modify the...
Devin Cook
devindcook
Offline Send Email
Mar 3, 2004
9:23 pm
360
Hi guys Just started using the GoldParser and I am VERY impressed - an awesome piece of work. I am building a parallel language for .NET, but have come across...
fthanks
Offline
Mar 5, 2004
3:15 am
361
Sounds fine if it works for you. Personally, I would suggest making the BEGIN and END tokens reasonable things that the programmer could use him/herself....
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 5, 2004
3:50 am
362
Hi there I could use an example of the GoldParse engine actually doing something with the parse tree - other than printing it to the console. For example, a...
fthanks
Offline
Mar 5, 2004
12:53 pm
363
... something with the parse tree - other than printing it to the console. For example, a simple code generator that has to apply some semantic rules? << ...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 5, 2004
5:31 pm
364
... making the ... use ... more ... specific ... indentation. ... dealing with ... well, I have to say that forced indentation can be quite elegant (and faster...
manuel_astudillo
manuel_astudillo@...
Send Email
Mar 5, 2004
9:03 pm
365
... (and faster to code). << Obviously, this could degenerate into a style war, but I very much disagree. First of all, as for "faster to code", compared to...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 6, 2004
12:52 am
366
Off the top of my head... You can redefine the Whitespace Token to nothing: Whitespace = I assume an indentaion based gramma is line based so...
Mat Hounsell
mat_geek
Offline Send Email
Mar 6, 2004
2:22 am
367
You could that approach. However, column sensitive languages such as this are not context-free grammars. I need to still determine the syntax, but a future...
Devin Cook
devindcook
Offline Send Email
Mar 6, 2004
9:43 am
368
There is an example project on the website using the ActiveX control and Visual Basic that implements a hideously simple interpreter. - Devin Cook ... From:...
Devin Cook
devindcook
Offline Send Email
Mar 6, 2004
9:43 am
369
This is probably your best resource. - Devin Cook...
Devin Cook
devindcook
Offline Send Email
Mar 6, 2004
9:46 am
370
Actually, that is a very eloquent workaround. Since the grammar is not context-free, the Engine will have to perform extra actions to define context sensitive...
Devin Cook
devindcook
Offline Send Email
Mar 6, 2004
9:49 am
371
Hello everyone, For the next version of the GOLD Builder, I want to expand the grammar syntax to allow undefined/virtual terminals. These terminals would be...
Devin Cook
devindcook
Offline Send Email
Mar 8, 2004
7:24 am
372
First of all, I've always been an ellipsis kind of guy, so uses "." works fine as a nullable rule marker. Of course, is it really necessary to add it to the...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 8, 2004
8:39 am
373
Dear Mr. Cook, It's a good news to hear that you are expanding the grammar of GOLD Builder. I would like to ask you how do you thing about letting user enter...
Truong Trung Dung
kapd_be_a_fa...
Offline Send Email
Mar 8, 2004
3:17 pm
374
... True. Since I am looking forward to a number of minor enhancements - I thought that an optional null symbol might make grammars more readable. ... ...
Devin Cook
devindcook
Offline Send Email
Mar 9, 2004
10:47 pm
375
... Sounds good. You could use "Undefined" and "Psuedo" as synonyms. As I suggested with the bracket syntax (any bracket would do, I'm just partial to square...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 9, 2004
11:52 pm
376
Virtual Terminal ? I would need to see an example usage to be certain but the most flexible and least argumentative is to allow the users to define there own ...
Mat Hounsell
mat_geek
Offline Send Email
Mar 10, 2004
3:22 am
377
... Excellent point. However, non-nested comments are really just a form of whitespace. The tokenizer does not need to analyze each of the embedded terminals...
Devin Cook
devindcook
Offline Send Email
Mar 10, 2004
6:23 am
378
... That's one possibility. ... Thank you, any help is always appreciated. I can work on my local version, though. Right now, I'm leaning slightly to adding a...
Devin Cook
devindcook
Offline Send Email
Mar 10, 2004
7:46 am
379
Dear Mr. Cook, ... just a form > of whitespace. The tokenizer does not need to analyze each of the ... comment. For ... delimiters of ... You are a wizard, Mr....
Truong Trung Dung
kapd_be_a_fa...
Offline Send Email
Mar 10, 2004
12:20 pm
380
... No problem. ... That means the CGT files support all 1114112 Unicode code points (0x000000-0x10FFFF). Which encoding do you use? UTF-16? The C++ engine by...
ggrossbe
Offline Send Email
Mar 10, 2004
2:14 pm
381
... character set; ... which is ... Linux ... I dont think the size of wchar_t is going to matter. The problem is that the tables generated by gold parser, use...
manuel_astudillo
manuel_astudillo@...
Send Email
Mar 10, 2004
7:29 pm
Messages 351 - 381 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