Skip to content

Commit

Permalink
updated java
Browse files Browse the repository at this point in the history
  • Loading branch information
JVerbruggen committed Dec 17, 2021
1 parent 6baa6a9 commit 5b3ae61
Show file tree
Hide file tree
Showing 74 changed files with 227 additions and 159 deletions.
2 changes: 1 addition & 1 deletion java/JurjenLang.interp

Large diffs are not rendered by default.

Binary file modified java/JurjenLangBaseListener.class
Binary file not shown.
12 changes: 12 additions & 0 deletions java/JurjenLangBaseListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,18 @@ public class JurjenLangBaseListener implements JurjenLangListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitE_negation(JurjenLangParser.E_negationContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterE_func(JurjenLangParser.E_funcContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitE_func(JurjenLangParser.E_funcContext ctx) { }
/**
* {@inheritDoc}
*
Expand Down
Binary file modified java/JurjenLangBaseVisitor.class
Binary file not shown.
7 changes: 7 additions & 0 deletions java/JurjenLangBaseVisitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,13 @@ public class JurjenLangBaseVisitor<T> extends AbstractParseTreeVisitor<T> implem
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitE_negation(JurjenLangParser.E_negationContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitE_func(JurjenLangParser.E_funcContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
Expand Down
Binary file modified java/JurjenLangListener.class
Binary file not shown.
12 changes: 12 additions & 0 deletions java/JurjenLangListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,18 @@ public interface JurjenLangListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitE_negation(JurjenLangParser.E_negationContext ctx);
/**
* Enter a parse tree produced by the {@code e_func}
* labeled alternative in {@link JurjenLangParser#e}.
* @param ctx the parse tree
*/
void enterE_func(JurjenLangParser.E_funcContext ctx);
/**
* Exit a parse tree produced by the {@code e_func}
* labeled alternative in {@link JurjenLangParser#e}.
* @param ctx the parse tree
*/
void exitE_func(JurjenLangParser.E_funcContext ctx);
/**
* Enter a parse tree produced by the {@code e_division}
* labeled alternative in {@link JurjenLangParser#e}.
Expand Down
Binary file modified java/JurjenLangParser$Any_valueContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$AssertionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$AssignableContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Assignable_bool_expressionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Assignable_expressionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$AssignmentContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_comparisonContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_eContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_andContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_booleanContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_expressionsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_expressions_boolsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_notContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_orContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_e_variableContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Bool_parenthesesContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Boolean_falseContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Boolean_trueContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Boolean_typeContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$ComparisonContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$DebugtoolsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$EContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_additionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_any_valueContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_divisionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_exponentContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_factorialContext.class
Binary file not shown.
Binary file added java/JurjenLangParser$E_funcContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_multiplyContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_negationContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_parenthesesContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_subtractionContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$E_variableContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$ElifstatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Elifstat_chainContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$ElsestatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Float_by_dotContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Float_by_dot_and_identContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Float_by_identContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Float_no_prior_by_dotContext.class
Binary file not shown.
Binary file not shown.
Binary file modified java/JurjenLangParser$Float_typeContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$FuncContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_callContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_call_paramsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_call_params_multipleContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_call_params_singleContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_defContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_paramsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Func_returnContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$IfchainContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$IfstatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$IntegerContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$Maybe_elsestatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$PrintscopestatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$PrintstatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$RetstatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$ScopeContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$StatContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$StatsContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$StringContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$VariableContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser$WhileloopContext.class
Binary file not shown.
Binary file modified java/JurjenLangParser.class
Binary file not shown.
Loading

0 comments on commit 5b3ae61

Please sign in to comment.