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

The Archive Base Latest Questions

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

I have the following bison grammar (as part of a more complex grammar): classDeclaration

  • 0

I have the following bison grammar (as part of a more complex grammar):

classDeclaration : CLASS ID EXTENDS ID LBRACE variableDeclarationList methodDeclarationList RBRACE
                 ;

variableDeclarationList : variableDeclarationList variableDeclaration 
                        | /* empty */
                        ;

variableDeclaration : type ID SEMICOLON
                    ;

type : NATTYPE | ID
     ;

methodDeclarationList : methodDeclarationList methodDeclaration
                      | /* empty */
                      ;

methodDeclaration : type ID LPAREN parameterDeclarationList RPAREN variableExpressionBlock
          ;

which is supposed to describe class declarations which look like this:

class foo extends object
{
    nat number;

    nat divide(nat aNumber)
    {
        0;
    }
}

or this:

class foo extends object
{
    nat divide(nat aNumber)
    {
        0;
    }
}

or this:

class foo extends object
{
}

Problem is that there is ambiguity where variable declarations end and method declarations begin (2 shift/reduce conflicts). For example, the method declaration looks like a variable declaration until it sees the parenthesis.

How can I rewrite this grammar to eliminate this ambiguity?

To clarify: the class body can be empty, the only constraint is that variable declarations come before method declarations if there are any.

  • 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-26T12:52:55+00:00Added an answer on May 26, 2026 at 12:52 pm

    Another way to do it is to not even have empty rules, and instead use multiple options, one with the nonterminal and one without.

    classDeclaration : CLASS ID EXTENDS ID LBRACE RBRACE
                     | CLASS ID EXTENDS ID LBRACE methodDeclarationList RBRACE
                     | CLASS ID EXTENDS ID LBRACE variableDeclarationList RBRACE
                     | CLASS ID EXTENDS ID LBRACE variableDeclarationList methodDeclarationList RBRACE           
                     ;
    
    variableDeclarationList : variableDeclaration 
                            | variableDeclarationList variableDeclaration
                            ;
    
    variableDeclaration : type ID SEMICOLON
                        ;
    
    type : NATTYPE 
         | ID
         ;
    
    methodDeclarationList : methodDeclaration 
                          | methodDeclarationList methodDeclaration
                          ;
    
    methodDeclaration :  type ID LPAREN RPAREN variableExpressionBlock
                      |  type ID LPAREN parameterList RPAREN variableExpressionBlock
                      ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have following setup: MainActivity class - extends activity MyLayout class - extends View Prefs
I have following code: public class reader extends Activity { WebView mWebView; String mFilename;
I have the following test class that represents a composite _id: private sealed class
I have the following class hierarchy [BsonKnownTypes(typeof(MoveCommand))] public abstract class Command : ICommand {
In larger program I have given the following (flex/bison) In flex: pn [\+|\-] dig
I have following mapping definitions: <class name=Role table=Role optimistic-lock=version > <id name=Id type=Int32 unsaved-value=0
I have following design requirements: interface Server {} public class ServerImpl implements Server {}
Okay I have the following code in Bison .l file. By the way I
I have lots of bson files in the following path: c:/mongodb/bin/dump/Sid If I run
I have following plist: <?xml version=1.0 encoding=UTF-8?> <!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd>

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.