[il-antlr-interest: 25713] [antlr-interest] Univ. of San Francisco looking for CS faculty

2009-09-11 Thread Terence Parr
Howdy, USF has a tenure slot open for Fall 2010 :) http://www.cra.org/ads/adtext/ads4aa7d613eca88.php Any PhD types out there? Ter List: http://www.antlr.org/mailman/listinfo/antlr-interest Unsubscribe: http://www.antlr.org/mailman/options/antlr-interest/your-email-address --~--~-~--

[il-antlr-interest: 25712] Re: [antlr-interest] Calling scala methods from ANTLR grammar - lots of warnings!

2009-09-11 Thread Alex Eagle
Doh... I'm pretty sure I tried that first, but yeah, backslash works fine. Thanks! -Alex On Fri, Sep 11, 2009 at 3:34 PM, Terence Parr wrote: > try \$eq :) > Ter > On Sep 11, 2009, at 11:12 AM, Alex Eagle wrote: > >> Hi Terrance and others, >> >> I'm using ANTLR3, and in my tree grammar I'm ass

[il-antlr-interest: 25711] Re: [antlr-interest] Calling scala methods from ANTLR grammar - lots of warnings!

2009-09-11 Thread Terence Parr
try \$eq :) Ter On Sep 11, 2009, at 11:12 AM, Alex Eagle wrote: > Hi Terrance and others, > > I'm using ANTLR3, and in my tree grammar I'm assembling an object > model in Scala. When I add elements to a > scala.collection.mutable.Buffer, there's a method in scala "+=" which > is emitted into java

[il-antlr-interest: 25710] Re: [antlr-interest] Looking for reference to how ANTLR performs ... special example will not work???

2009-09-11 Thread John B. Brodie
Greetings! On Fri, 2009-09-11 at 10:20 -0400, Sylvain, Gregory [USA] wrote: > Great replies thank you, I was assumed the longest-match wins rules > applied, but I wasn't sure - thanks. > > Here is an example of the sort of problems I am trying to figure out. > > > r: 'BEGIN/' f1

[il-antlr-interest: 25708] [antlr-interest] Calling scala methods from ANTLR grammar - lots of warnings!

2009-09-11 Thread Alex Eagle
Hi Terrance and others, I'm using ANTLR3, and in my tree grammar I'm assembling an object model in Scala. When I add elements to a scala.collection.mutable.Buffer, there's a method in scala "+=" which is emitted into java bytecode as "$plus$eq". So my grammar has chunks like this: importDeclarat

[il-antlr-interest: 25707] PHP, WEB SITE CREATION JOB

2009-09-11 Thread arti arora
[image: Freelance Jobs] [image: Freelance Jobs] [image: Freelance Jobs] [image: Freelance Jobs]

[il-antlr-interest: 25704] [antlr-interest] Can I post a translation of your verilog grammer to Perl on my website?

2009-09-11 Thread avidan efody
Hi, If this is not the right address for questions of this type please accept my sincere apology and point me to the right address if you can... I have found a Verilog grammer on your site, and since I'm using Perl, have translated it into a grammer that Perl's RecDescent module can understand.

[il-antlr-interest: 25703] Re: [antlr-interest] Looking for reference to how ANTLR performs ... special example will not work???

2009-09-11 Thread Jim Idle
On 09/11/2009 07:20 AM, Sylvain, Gregory [USA] wrote: > Great replies thank you, I was assumed the longest-match wins rules > applied, but I wasn't sure - thanks. > Here is an example of the sort of problems I am trying to figure out. > r: 'BEGIN/' f1=(number 'T') f2=field EOT EOL > nu

[il-antlr-interest: 25702] Re: [antlr-interest] Looking for reference to how ANTLR performs ... special example will not work???

2009-09-11 Thread Sylvain, Gregory [USA]
Great replies thank you, I was assumed the longest-match wins rules applied, but I wasn't sure - thanks. Here is an example of the sort of problems I am trying to figure out. r: 'BEGIN/' f1=(number 'T') f2=field EOT EOL number : INT | FLOAT ; field : ALPHANUM_CHAR+; ALPHANUM_C

[il-antlr-interest: 25701] Re: [antlr-interest] Optimized code generation

2009-09-11 Thread Indhu Bharathi
ABNF is documented here: http://en.wikipedia.org/wiki/Augmented_Backus -Naur_Form You will first have to understand the differences and convert in to a LL ANTLR grammar. I'm not sure but ABNF might allow left recursion. In th