Add alternative to antlr2 grammar rule for group that is optional part of a number of higher level rules











up vote
0
down vote

favorite












I am looking at adding parser alternatives/recovery to to Groovy language grammar: https://github.com/apache/groovy/blob/master/src/main/antlr2/org/codehaus/groovy/antlr/groovy.g



How can I add an alternative to annotationMemberValuePairs that does not cause the parser to bail out of the higher level rules where annotations are optional?



I want to be able to support incomplete annotations like these -- for content assist (code completion) purposes:



@
@Tag(a)
@Tag(a=)
@Tag(a=v,)


I have made modifications that support all but the last. But the trailing comma is giving me fits because annotations are optional in front of a bunch of higher-level rules like the package statement, import statements, type declarations, method declarations, etc.



annotation!  {Token first = LT(1);}
: AT! i:identifier nls! ( LPAREN! ( args:annotationArguments )? RPAREN! )?
{#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),i,args);}
// GRECLIPSE add -- allow freestanding '@' for content assist
| AT! nls!
{#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),missingIdentifier(first,LT(1)),null);}
// GRECLIPSE end
;

annotationsInternal
: (
options{generateAmbigWarnings=false;}:
{break; /* go out of the ()* loop*/}
AT "interface"
|
annotation nls!
)*
;

annotationsOpt {Token first = LT(1);}
: (
// See comment above on hushing warnings.
options{generateAmbigWarnings=false;}:
annotationsInternal
)?
{#annotationsOpt = #(create(ANNOTATIONS,"ANNOTATIONS",first,LT(1)),#annotationsOpt);}
;

annotationArguments
: v:annotationMemberValueInitializer
{Token itkn = new Token(IDENT,"value"); AST i; #i = #(create(IDENT,"value",itkn,itkn));
#annotationArguments = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",LT(1),LT(1)),i,v);}
| annotationMemberValuePairs
;

annotationMemberValuePairs
: annotationMemberValuePair ( COMMA! nls! annotationMemberValuePair )*
;

annotationMemberValuePair! {Token first = LT(1);}
: i:annotationIdent ( ASSIGN! nls! ( v:annotationMemberValueInitializer )? )?
{#annotationMemberValuePair = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",first,LT(1)),i,v);}
;

annotationIdent
: IDENT
| keywordPropertyNames
;

annotationMemberValueInitializer
: conditionalExpression[0] | annotation
;


So when I add an alternative to annotationMemberValuePairs like this:



:   annotationMemberValuePair ( COMMA! nls! ( annotationMemberValuePair | RPAREN! {rewind(mark()-1);}) )*


The alternative only works for type declarations, which is at the bottom of a stack of possibilities that all have annotations as optional in a leading position.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I am looking at adding parser alternatives/recovery to to Groovy language grammar: https://github.com/apache/groovy/blob/master/src/main/antlr2/org/codehaus/groovy/antlr/groovy.g



    How can I add an alternative to annotationMemberValuePairs that does not cause the parser to bail out of the higher level rules where annotations are optional?



    I want to be able to support incomplete annotations like these -- for content assist (code completion) purposes:



    @
    @Tag(a)
    @Tag(a=)
    @Tag(a=v,)


    I have made modifications that support all but the last. But the trailing comma is giving me fits because annotations are optional in front of a bunch of higher-level rules like the package statement, import statements, type declarations, method declarations, etc.



    annotation!  {Token first = LT(1);}
    : AT! i:identifier nls! ( LPAREN! ( args:annotationArguments )? RPAREN! )?
    {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),i,args);}
    // GRECLIPSE add -- allow freestanding '@' for content assist
    | AT! nls!
    {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),missingIdentifier(first,LT(1)),null);}
    // GRECLIPSE end
    ;

    annotationsInternal
    : (
    options{generateAmbigWarnings=false;}:
    {break; /* go out of the ()* loop*/}
    AT "interface"
    |
    annotation nls!
    )*
    ;

    annotationsOpt {Token first = LT(1);}
    : (
    // See comment above on hushing warnings.
    options{generateAmbigWarnings=false;}:
    annotationsInternal
    )?
    {#annotationsOpt = #(create(ANNOTATIONS,"ANNOTATIONS",first,LT(1)),#annotationsOpt);}
    ;

    annotationArguments
    : v:annotationMemberValueInitializer
    {Token itkn = new Token(IDENT,"value"); AST i; #i = #(create(IDENT,"value",itkn,itkn));
    #annotationArguments = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",LT(1),LT(1)),i,v);}
    | annotationMemberValuePairs
    ;

    annotationMemberValuePairs
    : annotationMemberValuePair ( COMMA! nls! annotationMemberValuePair )*
    ;

    annotationMemberValuePair! {Token first = LT(1);}
    : i:annotationIdent ( ASSIGN! nls! ( v:annotationMemberValueInitializer )? )?
    {#annotationMemberValuePair = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",first,LT(1)),i,v);}
    ;

    annotationIdent
    : IDENT
    | keywordPropertyNames
    ;

    annotationMemberValueInitializer
    : conditionalExpression[0] | annotation
    ;


    So when I add an alternative to annotationMemberValuePairs like this:



    :   annotationMemberValuePair ( COMMA! nls! ( annotationMemberValuePair | RPAREN! {rewind(mark()-1);}) )*


    The alternative only works for type declarations, which is at the bottom of a stack of possibilities that all have annotations as optional in a leading position.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am looking at adding parser alternatives/recovery to to Groovy language grammar: https://github.com/apache/groovy/blob/master/src/main/antlr2/org/codehaus/groovy/antlr/groovy.g



      How can I add an alternative to annotationMemberValuePairs that does not cause the parser to bail out of the higher level rules where annotations are optional?



      I want to be able to support incomplete annotations like these -- for content assist (code completion) purposes:



      @
      @Tag(a)
      @Tag(a=)
      @Tag(a=v,)


      I have made modifications that support all but the last. But the trailing comma is giving me fits because annotations are optional in front of a bunch of higher-level rules like the package statement, import statements, type declarations, method declarations, etc.



      annotation!  {Token first = LT(1);}
      : AT! i:identifier nls! ( LPAREN! ( args:annotationArguments )? RPAREN! )?
      {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),i,args);}
      // GRECLIPSE add -- allow freestanding '@' for content assist
      | AT! nls!
      {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),missingIdentifier(first,LT(1)),null);}
      // GRECLIPSE end
      ;

      annotationsInternal
      : (
      options{generateAmbigWarnings=false;}:
      {break; /* go out of the ()* loop*/}
      AT "interface"
      |
      annotation nls!
      )*
      ;

      annotationsOpt {Token first = LT(1);}
      : (
      // See comment above on hushing warnings.
      options{generateAmbigWarnings=false;}:
      annotationsInternal
      )?
      {#annotationsOpt = #(create(ANNOTATIONS,"ANNOTATIONS",first,LT(1)),#annotationsOpt);}
      ;

      annotationArguments
      : v:annotationMemberValueInitializer
      {Token itkn = new Token(IDENT,"value"); AST i; #i = #(create(IDENT,"value",itkn,itkn));
      #annotationArguments = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",LT(1),LT(1)),i,v);}
      | annotationMemberValuePairs
      ;

      annotationMemberValuePairs
      : annotationMemberValuePair ( COMMA! nls! annotationMemberValuePair )*
      ;

      annotationMemberValuePair! {Token first = LT(1);}
      : i:annotationIdent ( ASSIGN! nls! ( v:annotationMemberValueInitializer )? )?
      {#annotationMemberValuePair = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",first,LT(1)),i,v);}
      ;

      annotationIdent
      : IDENT
      | keywordPropertyNames
      ;

      annotationMemberValueInitializer
      : conditionalExpression[0] | annotation
      ;


      So when I add an alternative to annotationMemberValuePairs like this:



      :   annotationMemberValuePair ( COMMA! nls! ( annotationMemberValuePair | RPAREN! {rewind(mark()-1);}) )*


      The alternative only works for type declarations, which is at the bottom of a stack of possibilities that all have annotations as optional in a leading position.










      share|improve this question













      I am looking at adding parser alternatives/recovery to to Groovy language grammar: https://github.com/apache/groovy/blob/master/src/main/antlr2/org/codehaus/groovy/antlr/groovy.g



      How can I add an alternative to annotationMemberValuePairs that does not cause the parser to bail out of the higher level rules where annotations are optional?



      I want to be able to support incomplete annotations like these -- for content assist (code completion) purposes:



      @
      @Tag(a)
      @Tag(a=)
      @Tag(a=v,)


      I have made modifications that support all but the last. But the trailing comma is giving me fits because annotations are optional in front of a bunch of higher-level rules like the package statement, import statements, type declarations, method declarations, etc.



      annotation!  {Token first = LT(1);}
      : AT! i:identifier nls! ( LPAREN! ( args:annotationArguments )? RPAREN! )?
      {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),i,args);}
      // GRECLIPSE add -- allow freestanding '@' for content assist
      | AT! nls!
      {#annotation = #(create(ANNOTATION,"ANNOTATION",first,LT(1)),missingIdentifier(first,LT(1)),null);}
      // GRECLIPSE end
      ;

      annotationsInternal
      : (
      options{generateAmbigWarnings=false;}:
      {break; /* go out of the ()* loop*/}
      AT "interface"
      |
      annotation nls!
      )*
      ;

      annotationsOpt {Token first = LT(1);}
      : (
      // See comment above on hushing warnings.
      options{generateAmbigWarnings=false;}:
      annotationsInternal
      )?
      {#annotationsOpt = #(create(ANNOTATIONS,"ANNOTATIONS",first,LT(1)),#annotationsOpt);}
      ;

      annotationArguments
      : v:annotationMemberValueInitializer
      {Token itkn = new Token(IDENT,"value"); AST i; #i = #(create(IDENT,"value",itkn,itkn));
      #annotationArguments = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",LT(1),LT(1)),i,v);}
      | annotationMemberValuePairs
      ;

      annotationMemberValuePairs
      : annotationMemberValuePair ( COMMA! nls! annotationMemberValuePair )*
      ;

      annotationMemberValuePair! {Token first = LT(1);}
      : i:annotationIdent ( ASSIGN! nls! ( v:annotationMemberValueInitializer )? )?
      {#annotationMemberValuePair = #(create(ANNOTATION_MEMBER_VALUE_PAIR,"ANNOTATION_MEMBER_VALUE_PAIR",first,LT(1)),i,v);}
      ;

      annotationIdent
      : IDENT
      | keywordPropertyNames
      ;

      annotationMemberValueInitializer
      : conditionalExpression[0] | annotation
      ;


      So when I add an alternative to annotationMemberValuePairs like this:



      :   annotationMemberValuePair ( COMMA! nls! ( annotationMemberValuePair | RPAREN! {rewind(mark()-1);}) )*


      The alternative only works for type declarations, which is at the bottom of a stack of possibilities that all have annotations as optional in a leading position.







      groovy antlr antlr2






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 15:57









      emilles

      35818




      35818





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53229153%2fadd-alternative-to-antlr2-grammar-rule-for-group-that-is-optional-part-of-a-numb%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53229153%2fadd-alternative-to-antlr2-grammar-rule-for-group-that-is-optional-part-of-a-numb%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini