irony

How long has EStackOverflow been deprecated and what replaces it?

I noticed that EStackOverflow, as defined in SysUtils.pas is marked as deprecated in Delphi 2009. I checked and it was also marked as deprecated in 2007. I have a Delphi 7 install disk here, but I thought I would ask if anyone knows when it was deprecated. Additionally, does anyone know why, and what replaces it? I wrote a test appli...

Help with learning to use Irony for .net

I am trying to get up to speed with Irony. I keep seeing some terminology that I don't yet understand: terminals, non-terminals, token, state machine, Associativity, Abstract Syntax Tree. Can someone please give some meaning to some of these terms? I keep reading great things about Irony, so any help you can give with learning how to us...

How to define syntax

Hi, I am new at language processing and I want to create a parser with Irony for a following syntax: name1:value1 name2:value2 name3:value ... where name1 is the name of an xml element and value is the value of the element which can also include spaces. I have tried to modify included samples like this: public TestGrammar() ...