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 6603621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:02:22+00:00 2026-05-25T19:02:22+00:00

I am using the newest ANTLR. I get this error message while trying to

  • 0

I am using the newest ANTLR. I get this error message while trying to debug this grammar:

grammar Grammar;

options {   language = Java;
}

@header {
package parser;
import java.util.HashMap;
import viewmodel.*;
import java.util.List;
}

@members {
/** Map variable name to Integer object holding value */
HashMap memory = new HashMap();
}

prog returns [DiagramNode node]
    :   clas 
        {$node = $clas.node;}
    ;

clas returns [DiagramNode node]
    :VISIBILITY* CLASSORINTERFACE name=NAME '{' classDef '}' NEWLINE
        {$node = $classDef.node;
        $node.setName(name.getText());
        }
    ;

classDef returns [DiagramNode node]
    :{$node = new DiagramNode();    }
    fieldDef ';' NEWLINE?
        {$node.getFields().add($fieldDef.field);}
    ;

fieldDef returns [DiagramField field]
    :{$field = new DiagramField();}
    type=NAME name=NAME ';' NEWLINE? 
        {$field.setType(type.getText());
        $field.setName(name.getText());
        }
    ;


VISIBILITY 
    :   ('public' | 'private' | 'protected');
CLASSORINTERFACE
    :   ('class' | 'inerface');
NAME
    :   ('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9') *;
INT :   '0'..'9'+ ;
NEWLINE:'\r'? '\n' {skip();};
WS  :   (' '|'\t')+ {skip();} ;

The input is:

class Abc {
    Type1 Name1;
    Type2 Name2;
}

I am assuming that it’s grammar’s fault, cause another one was compiling and working fine. Could you point me possible errors?

  • 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-25T19:02:23+00:00Added an answer on May 25, 2026 at 7:02 pm

    I see that there are no people here who know anything about ANTLR. Luckily I’ve figured it out on my own. The cause of the problem was the logic inside the grammar – I don’t know what exactly, it could be wrong import, using variables, arguments or returns in a wrong way, or eventually missing package declaration for lexer:

    @lexer::header{
        package parser;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently developing an application using the newest version of symfony, obtained through PEAR. This
I am trying to build a project using the newest release candidate of Scala
I'm trying to make a table float right in DOMPDF. I'm using the newest
I've decided to build my newest site using Rails 3. This is my first
I'm using rabbitmq java client 2.4.1 the newest version. After a TCP connection lost,
I'm learning OpenGL using the newest blue book, and I was hoping to get
Using C# .NET 3.5 and WCF, I'm trying to write out some of the
I've been using the newest version of the groovy eclipse plugin (for eclipse 3.4)
Having some problems while trying to optimize my SQL. I got 2 tables like
Has anyone got EclipseLink MOXy (I'm using eclipselink 2.1.0) to work with Java 5?

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.