Skip to content

Commit

Permalink
latest parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Nov 26, 2022
1 parent 1a995d1 commit 6375f0a
Show file tree
Hide file tree
Showing 9 changed files with 5,000 additions and 4,879 deletions.
4,497 changes: 2,258 additions & 2,239 deletions Core/src/generated/java/prompto/parser/EParser.java

Large diffs are not rendered by default.

36 changes: 24 additions & 12 deletions Core/src/generated/java/prompto/parser/EParserBaseListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -1571,6 +1571,18 @@ public class EParserBaseListener implements EParserListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitMemberSelector(EParser.MemberSelectorContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterMethodSelector(EParser.MethodSelectorContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitMethodSelector(EParser.MethodSelectorContext ctx) { }
/**
* {@inheritDoc}
*
Expand Down Expand Up @@ -2711,18 +2723,6 @@ public class EParserBaseListener implements EParserListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitType_identifier_list(EParser.Type_identifier_listContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterMethod_identifier(EParser.Method_identifierContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitMethod_identifier(EParser.Method_identifierContext ctx) { }
/**
* {@inheritDoc}
*
Expand Down Expand Up @@ -2807,6 +2807,18 @@ public class EParserBaseListener implements EParserListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitMember_identifier(EParser.Member_identifierContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterMethod_identifier(EParser.Method_identifierContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitMethod_identifier(EParser.Method_identifierContext ctx) { }
/**
* {@inheritDoc}
*
Expand Down
32 changes: 22 additions & 10 deletions Core/src/generated/java/prompto/parser/EParserListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -1485,6 +1485,18 @@ public interface EParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitMemberSelector(EParser.MemberSelectorContext ctx);
/**
* Enter a parse tree produced by the {@code MethodSelector}
* labeled alternative in {@link EParser#instance_selector}.
* @param ctx the parse tree
*/
void enterMethodSelector(EParser.MethodSelectorContext ctx);
/**
* Exit a parse tree produced by the {@code MethodSelector}
* labeled alternative in {@link EParser#instance_selector}.
* @param ctx the parse tree
*/
void exitMethodSelector(EParser.MethodSelectorContext ctx);
/**
* Enter a parse tree produced by the {@code SliceSelector}
* labeled alternative in {@link EParser#instance_selector}.
Expand Down Expand Up @@ -2547,16 +2559,6 @@ public interface EParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitType_identifier_list(EParser.Type_identifier_listContext ctx);
/**
* Enter a parse tree produced by {@link EParser#method_identifier}.
* @param ctx the parse tree
*/
void enterMethod_identifier(EParser.Method_identifierContext ctx);
/**
* Exit a parse tree produced by {@link EParser#method_identifier}.
* @param ctx the parse tree
*/
void exitMethod_identifier(EParser.Method_identifierContext ctx);
/**
* Enter a parse tree produced by {@link EParser#identifier_or_keyword}.
* @param ctx the parse tree
Expand Down Expand Up @@ -2633,6 +2635,16 @@ public interface EParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitMember_identifier(EParser.Member_identifierContext ctx);
/**
* Enter a parse tree produced by {@link EParser#method_identifier}.
* @param ctx the parse tree
*/
void enterMethod_identifier(EParser.Method_identifierContext ctx);
/**
* Exit a parse tree produced by {@link EParser#method_identifier}.
* @param ctx the parse tree
*/
void exitMethod_identifier(EParser.Method_identifierContext ctx);
/**
* Enter a parse tree produced by {@link EParser#variable_identifier}.
* @param ctx the parse tree
Expand Down
Loading

0 comments on commit 6375f0a

Please sign in to comment.