Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6766993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:53:52+00:00 2026-05-26T14:53:52+00:00

I don’t see why the following antlr grammar does not generate the tree for

  • 0

I don’t see why the following antlr grammar does not generate the tree for the input “b b b”
but it generates the tree for the input “a a a”

statement
  |
a a a 

Do you have some ideas? Thanks.

grammar Test2;

options {
  language = Java;
}

statement: ( a|b )*;

a: 'a';

b: 'b';

WS: ('\n'|' '|'\t'|'r'|'\f')+ {$channel=HIDDEN;};

Can anyone tries this one in ANTLR IDE eclipse plugin
http://antlrv3ide.sourceforge.net/

In my Eclipse, it does behave strangely as I reported above.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T14:53:53+00:00Added an answer on May 26, 2026 at 2:53 pm

    It recognizes both both "a a a" and "b b b", as it should. To check for yourself, add a little debug-print statement to your statement rule:

    grammar Test2;
    
    options {
      language = Java;
    }
    
    statement: ( a|b )* {System.out.println("parsed: " + $text);};
    
    a: 'a';
    
    b: 'b';
    
    WS: ('\n'|' '|'\t'|'r'|'\f')+ {$channel=HIDDEN;};
    

    and then test the parser with the following class:

    import org.antlr.runtime.*;
    
    public class Main {
      public static void main(String[] args) throws Exception {
        Test2Lexer lexer = new Test2Lexer(new ANTLRStringStream(args[0]));
        Test2Parser parser = new Test2Parser(new CommonTokenStream(lexer));
        parser.statement();
      }
    }
    

    After generating a lexer & parser and compiling all .java source files:

    java -cp antlr-3.3.jar org.antlr.Tool Test2.g
    javac -cp antlr-3.3.jar *.java
    

    you can test the parser with "a a a" as input:

    java -cp .:antlr-3.3.jar Main "a a a"
    parsed: a a a
    

    and with "b b b" as input:

    java -cp .:antlr-3.3.jar Main "b b b"
    parsed: b b b
    

    As you can see, in both cases no error is reported, and the input is printed back to the console.

    My guess is that you’re using ANTLRWorks’ interpreter. Don’t. It is notoriously buggy. Either use ANTLRWorks’ debugger (it’s great!), or use a small test class you write yourself (similar to my Main class).

    EDIT

    Note that the ANTLR IDE Eclipse plugin uses the interpreter from ANTLRWorks, AFAIK.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

(Don't know if this is strictly on-topic, but I don't see any better Stack
Don't ask why but I have the requirement to draw a border around certain
Don't ask me how but I managed to get accidentally the following remote branches
DON'T ASK WHY but... I have a regex that needs to be case insensitive
Don't know why but I can't find a solution to this. I have 3
Don't know the term for the red validation border, does it have one? I
Don't want to sort the entries. using this does not preserve the order as
I don't know if this question is trivial or not. But after a couple
Don't you hate it when you have class Foobar { public: Something& getSomething(int index)
Don't dismiss this as a newbie question! It's not, I'm not, I've tried everything,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.