Hi, Has anybody here built or considered building a script interpreter with wwf? It just hit me that it might be possible but I haven't actually ever used wwf...
I solved first part by defining $$ tag string as: {PGStringCh} = {Printable} + {Whitespace} - ['$'] PGString = '$$' ( {PGStringCh}+ | {PGStringCh}+ '$'...
kelly are you spying on me? I just got finished writing a bunch of workflow code. It would be interesting to do so, but there are some interesting problems...
The problem isn't in the table, but how the engine deals with the table. Since it's a huge list of possibilities, and you merely want to include all of them,...
This is a serious problem because strings should be allowed to accept all Unicode characters and I would encourage engine writers to fix this problem. This is...
Dear Friend, Hey! I have a found a great PHP Lyrics Script that can really generate excellent money for you. Please visit the link below and see its features. ...
I'm not trying to be annoying, just looking for solution. Can anyone answer the question? I hope someone knowledgeable, for example Devin, can answer it from ...
The definition: {String Ch} = {All Valid} + {HT} - ["\] StringLiteral = [L]? '"' ( {String Ch} | '\' {Printable} )* '"' ... will work for all valid Unicode...
Devin Cook
GOLD-Admin@...
Apr 26, 2008 11:41 am
3325
I'll take a look at the conversation. At worst case, the terminal definition is ambiguous. This means it cannot be recognized by a regular expression. First...
Devin Cook
GOLD-Admin@...
Apr 26, 2008 11:51 am
3326
In the text: RETURN ($1 ~ $q$[\t\r\n\v\\]$q$); Does the binding of the $1 end when it hits the space? - Devin ________________________________________ ...
Devin Cook
GOLD-Admin@...
Apr 27, 2008 2:26 am
3327
'$1' is a postgres sql parameter which is defined as PGparam = '$' {Digit}+ ! dollar sign followed by an integer Thank you for looking at this problem! It...
I'm having a problem on how to use the Morozov C# template with visual studio.NET, Could someone please state the steps of creating a project using Morozov...
One more quick question, is the text... $1 ~ $q$[\t\r\n\v\\]$q$ ...considered one structure? Or is this seen as $1, ~, $q$, [\t\r\n\v\\], and $q$ - Devin ...
Devin Cook
GOLD-Admin@...
Apr 27, 2008 11:31 pm
3330
Simple Example of gramar: ! ------------------------------------------------- Terminals IdName ={Letter}{Alphanumeric}* !...
Check out his SimpleInterpreter source code. http://www.notebar.com/GoldParser/GoldParserEngine_2.1.zip It is in the Source\SimpleInterpreter subdirectory. ......
... Sorry, no. According to your own claim a correct choice is shown. The set shown by GOLD is not minimal, which is by design of the output. -manfred...
... I don't see any severe science in BNF, because it is just a widely accepted notation for productions. If you recognize more impact, please let all of us...
First, I never said that it was a "severe science". I only asked if anyone knew of any web sites or books that explain it (in a little more detail than...
Hello, I thought it would be nice if the Test Grammar screen had a column showing the current parser stack depth. Makes the testing grammar process easier and...
The symbol table is a private member of the Grammar class in the engine. You would have to modify the source code (grammar.cs) and create a public member(s)...
The LALR algorithm uses a Follow Set to keep track of which terminals can follow each nonterminal. At the syntax error in your sample program, the system had...
Devin Cook
GOLD-Admin@...
Apr 29, 2008 8:15 pm
3343
I will take a look around the Net to see if I can find a great site. As far as books go, the best book on the subject is called the "Dragon Book". ...