diff --git a/src/main/java/Main.java b/src/main/java/Main.java index 779e5d1..0551ed9 100644 --- a/src/main/java/Main.java +++ b/src/main/java/Main.java @@ -1,7 +1,7 @@ -import oldAst.ASTNode; +import ast.ASTNode; import org.antlr.v4.runtime.*; -import oldAst.ProgramNode; -import bytecode.ByteCodeGenerator; +import ast.ProgramNode; +//import bytecode.ByteCodeGenerator; import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.CharStreams; import org.antlr.v4.runtime.tree.ParseTree; @@ -9,7 +9,7 @@ import org.antlr.v4.runtime.CommonTokenStream; import parser.astBuilder.ASTBuilder; import parser.generated.SimpleJavaLexer; import parser.generated.SimpleJavaParser; -import semantic.SemanticAnalyzer; +//import semantic.SemanticAnalyzer; import java.io.IOException; import java.nio.file.Paths; @@ -60,7 +60,7 @@ public class Main { /* ------------------------- AST builder -> AST ------------------------- */ ASTBuilder astBuilder = new ASTBuilder(); ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); - + System.out.println(abstractSyntaxTree); // Printing the AST // System.out.println("-------------------- AST builder -> AST --------------------"); // // System.out.println("AST: " + ast.toString()); @@ -70,8 +70,8 @@ public class Main { /* * ------------------------- Semantic Analyzer -> Tast ------------------------- */ - SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); - ProgramNode typedAst = (ProgramNode) semanticAnalyzer.generateTast(abstractSyntaxTree); + //SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); + //ProgramNode typedAst = (ProgramNode) semanticAnalyzer.generateTast(abstractSyntaxTree); // Printing the Tast System.out.println("Tast generated"); @@ -80,9 +80,9 @@ public class Main { * ------------------------- Bytecode Generator -> Bytecode * ------------------------- */ - ByteCodeGenerator byteCodeGenerator = new ByteCodeGenerator(); + //ByteCodeGenerator byteCodeGenerator = new ByteCodeGenerator(); //byteCodeGenerator.generateByteCode(abstractSyntaxTree); - byteCodeGenerator.visit(typedAst); + //byteCodeGenerator.visit(typedAst); System.out.println("Bytecode generated"); } diff --git a/src/main/java/ast/ClassNode.java b/src/main/java/ast/ClassNode.java index 573aef8..75f92b1 100644 --- a/src/main/java/ast/ClassNode.java +++ b/src/main/java/ast/ClassNode.java @@ -1,10 +1,9 @@ package ast; import ast.type.AccessModifierNode; -import bytecode.visitor.ClassVisitor; -import ast.members.ConstructorNode; -import ast.members.MemberNode; -import ast.members.MethodNode; +import ast.member.ConstructorNode; +import ast.member.MemberNode; +import ast.member.MethodNode; import semantic.SemanticVisitor; import typechecker.TypeCheckResult; import visitor.Visitable; @@ -35,7 +34,7 @@ public class ClassNode implements ASTNode, Visitable { public void ensureConstructor(){ if(!hasConstructor) { - ConstructorNode constructor = new ConstructorNode("public", identifier, ); + ConstructorNode constructor = new ConstructorNode(new AccessModifierNode("public"), identifier); members.addFirst(constructor); } } @@ -55,8 +54,4 @@ public class ClassNode implements ASTNode, Visitable { return visitor.analyze(this); } - @Override - public void accept(ClassVisitor classVisitor) { - classVisitor.visit(this); - } } diff --git a/src/main/java/ast/IdentifierNode.java b/src/main/java/ast/IdentifierNode.java deleted file mode 100644 index cd09699..0000000 --- a/src/main/java/ast/IdentifierNode.java +++ /dev/null @@ -1,4 +0,0 @@ -package ast; - -public class IdentifierNode { -} diff --git a/src/main/java/ast/ProgramNode.java b/src/main/java/ast/ProgramNode.java index f8ad19a..7fbe3e0 100644 --- a/src/main/java/ast/ProgramNode.java +++ b/src/main/java/ast/ProgramNode.java @@ -1,6 +1,5 @@ package ast; -import bytecode.visitor.ProgramVisitor; import semantic.SemanticVisitor; import typechecker.TypeCheckResult; import visitor.Visitable; @@ -19,9 +18,4 @@ public class ProgramNode implements ASTNode, Visitable { public TypeCheckResult accept(SemanticVisitor visitor) { return visitor.analyze(this); } - - @Override - public void accept(ProgramVisitor programVisitor) { - programVisitor.visit(this); - } } diff --git a/src/main/java/ast/expressions/AssignableExpressionNode.java b/src/main/java/ast/expressions/AssignableExpressionNode.java deleted file mode 100644 index bc702cc..0000000 --- a/src/main/java/ast/expressions/AssignableExpressionNode.java +++ /dev/null @@ -1,4 +0,0 @@ -package ast.expressions; - -public class AssignableExpressionNode { -} diff --git a/src/main/java/ast/expressions/ExpressionNode.java b/src/main/java/ast/expressions/ExpressionNode.java deleted file mode 100644 index 2d2e86c..0000000 --- a/src/main/java/ast/expressions/ExpressionNode.java +++ /dev/null @@ -1,4 +0,0 @@ -package ast.expressions; - -public class ExpressionNode { -} diff --git a/src/main/java/ast/expressions/IExpressionNode.java b/src/main/java/ast/expressions/IExpressionNode.java new file mode 100644 index 0000000..28b45e3 --- /dev/null +++ b/src/main/java/ast/expressions/IExpressionNode.java @@ -0,0 +1,11 @@ +package ast.expression; + +import ast.ASTNode; +import ast.type.type.ITypeNode; +import visitor.Visitable; + +public interface IExpressionNode extends ASTNode, Visitable { + + ITypeNode getType(); + +} diff --git a/src/main/java/ast/expressions/binaryexpression/BinaryExpressionNode.java b/src/main/java/ast/expressions/binaryexpression/BinaryExpressionNode.java new file mode 100644 index 0000000..655a3f5 --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/BinaryExpressionNode.java @@ -0,0 +1,19 @@ +package ast.expression.binaryexpression; + +import ast.expression.IExpressionNode; +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class BinaryExpressionNode implements IExpressionNode { + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return null; + } +} diff --git a/src/main/java/ast/expressions/binaryexpression/CalculationExpressionNode.java b/src/main/java/ast/expressions/binaryexpression/CalculationExpressionNode.java new file mode 100644 index 0000000..b594502 --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/CalculationExpressionNode.java @@ -0,0 +1,40 @@ +package ast.expression.binaryexpression; + +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class CalculationExpressionNode extends BinaryExpressionNode { + public CalculationExpressionNode calculationExpression; + public EnumLineOperator operator; + public DotExpressionNode dotExpression; + + public CalculationExpressionNode(CalculationExpressionNode calculationExpression, String operator, DotExpressionNode dotExpression) { + this.calculationExpression = calculationExpression; + setOperator(operator); + this.dotExpression = dotExpression; + } + + public CalculationExpressionNode(DotExpressionNode dotExpression) { + this.dotExpression = dotExpression; + } + + private void setOperator(String operator) { + if(operator.equals("+")) { + this.operator = EnumLineOperator.PLUS; + } else if(operator.equals("-")) { + this.operator = EnumLineOperator.MINUS; + } + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return null; + } + +} diff --git a/src/main/java/ast/expressions/binaryexpression/DotExpressionNode.java b/src/main/java/ast/expressions/binaryexpression/DotExpressionNode.java new file mode 100644 index 0000000..2d56221 --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/DotExpressionNode.java @@ -0,0 +1,42 @@ +package ast.expression.binaryexpression; + +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class DotExpressionNode extends BinaryExpressionNode { + public DotExpressionNode dotExpression; + public EnumDotOperator operator; + public DotSubstractionExpressionNode dotSubstractionExpression; + + public DotExpressionNode(DotExpressionNode dotExpression, String operator, DotSubstractionExpressionNode dotSubstractionExpression) { + this.dotExpression = dotExpression; + setOperator(operator); + this.dotSubstractionExpression = dotSubstractionExpression; + } + + public DotExpressionNode(DotSubstractionExpressionNode dotSubstractionExpression) { + this.dotSubstractionExpression = dotSubstractionExpression; + } + + private void setOperator(String operator) { + if(operator.equals("*")) { + this.operator = EnumDotOperator.MULT; + } else if(operator.equals("/")) { + this.operator = EnumDotOperator.DIV; + } else if(operator.equals("%")) { + this.operator = EnumDotOperator.MOD; + } + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return null; + } + +} diff --git a/src/main/java/ast/expressions/binaryexpression/DotSubstractionExpressionNode.java b/src/main/java/ast/expressions/binaryexpression/DotSubstractionExpressionNode.java new file mode 100644 index 0000000..1b43a9f --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/DotSubstractionExpressionNode.java @@ -0,0 +1,44 @@ +package ast.expression.binaryexpression; + +import ast.expression.unaryexpression.MemberAccessNode; +import ast.statement.statementexpression.methodcallstatementnexpression.MethodCallStatementExpressionNode; +import ast.type.type.*; +import ast.type.ValueNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class DotSubstractionExpressionNode extends BinaryExpressionNode { + public ValueNode value; + public String identifier; + public MemberAccessNode memberAccess; + public MethodCallStatementExpressionNode methodCall; + public CalculationExpressionNode calculationExpression; + + public DotSubstractionExpressionNode(ValueNode value) { + this.value = value; + } + + public DotSubstractionExpressionNode(String identifier) { + this.identifier = identifier; + } + + public DotSubstractionExpressionNode(MemberAccessNode memberAccess) { + this.memberAccess = memberAccess; + } + + public DotSubstractionExpressionNode(MethodCallStatementExpressionNode methodCall, CalculationExpressionNode calculationExpression) { + this.methodCall = methodCall; + this.calculationExpression = calculationExpression; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return null; + } + +} diff --git a/src/main/java/ast/expressions/binaryexpression/EnumDotOperator.java b/src/main/java/ast/expressions/binaryexpression/EnumDotOperator.java new file mode 100644 index 0000000..3525266 --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/EnumDotOperator.java @@ -0,0 +1,5 @@ +package ast.expression.binaryexpression; + +public enum EnumDotOperator { + MULT, DIV, MOD +} diff --git a/src/main/java/ast/expressions/binaryexpression/EnumLineOperator.java b/src/main/java/ast/expressions/binaryexpression/EnumLineOperator.java new file mode 100644 index 0000000..27389ec --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/EnumLineOperator.java @@ -0,0 +1,5 @@ +package ast.expression.binaryexpression; + +public enum EnumLineOperator { + PLUS, MINUS +} diff --git a/src/main/java/ast/expressions/binaryexpression/EnumNonCalculationOperator.java b/src/main/java/ast/expressions/binaryexpression/EnumNonCalculationOperator.java new file mode 100644 index 0000000..40c3dfd --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/EnumNonCalculationOperator.java @@ -0,0 +1,5 @@ +package ast.expression.binaryexpression; + +public enum EnumNonCalculationOperator { + AND, OR, GREATER, LESS, GREATER_EQUAL, LESS_EQUAL, EQUAL, NOT_EQUAL +} diff --git a/src/main/java/ast/expressions/binaryexpression/NonCalculationExpressionNode.java b/src/main/java/ast/expressions/binaryexpression/NonCalculationExpressionNode.java new file mode 100644 index 0000000..f89fdf8 --- /dev/null +++ b/src/main/java/ast/expressions/binaryexpression/NonCalculationExpressionNode.java @@ -0,0 +1,50 @@ +package ast.expression.binaryexpression; + +import ast.expression.IExpressionNode; +import ast.expression.unaryexpression.UnaryExpressionNode; +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class NonCalculationExpressionNode extends BinaryExpressionNode { + public UnaryExpressionNode unaryExpression; + public EnumNonCalculationOperator operator; + public IExpressionNode expression; + + public NonCalculationExpressionNode(UnaryExpressionNode unaryExpression, String operator, IExpressionNode expression) { + this.unaryExpression = unaryExpression; + setOperator(operator); + this.expression = expression; + } + + private void setOperator(String operator) { + if(operator.equals("&&")) { + this.operator = EnumNonCalculationOperator.AND; + } else if(operator.equals("||")) { + this.operator = EnumNonCalculationOperator.OR; + } else if(operator.equals(">")) { + this.operator = EnumNonCalculationOperator.GREATER; + } else if(operator.equals("<")) { + this.operator = EnumNonCalculationOperator.LESS; + } else if(operator.equals(">=")) { + this.operator = EnumNonCalculationOperator.GREATER_EQUAL; + } else if(operator.equals("<=")) { + this.operator = EnumNonCalculationOperator.LESS_EQUAL; + } else if(operator.equals("==")) { + this.operator = EnumNonCalculationOperator.EQUAL; + } else if(operator.equals("!=")) { + this.operator = EnumNonCalculationOperator.NOT_EQUAL; + } + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return null; + } + +} diff --git a/src/main/java/ast/expressions/unaryexpression/MemberAccessNode.java b/src/main/java/ast/expressions/unaryexpression/MemberAccessNode.java new file mode 100644 index 0000000..f5f7090 --- /dev/null +++ b/src/main/java/ast/expressions/unaryexpression/MemberAccessNode.java @@ -0,0 +1,20 @@ +package ast.expression.unaryexpression; + +import ast.ASTNode; + +import java.util.ArrayList; +import java.util.List; + +public class MemberAccessNode implements ASTNode { + public Boolean thisExpr; + public List identifiers = new ArrayList<>(); + + public MemberAccessNode(Boolean thisExpr) { + this.thisExpr = thisExpr; + } + + public void addIdentifier(String identifier) { + identifiers.add(identifier); + } + +} diff --git a/src/main/java/ast/expressions/unaryexpression/NotExpressionNode.java b/src/main/java/ast/expressions/unaryexpression/NotExpressionNode.java new file mode 100644 index 0000000..f225f39 --- /dev/null +++ b/src/main/java/ast/expressions/unaryexpression/NotExpressionNode.java @@ -0,0 +1,13 @@ +package ast.expression.unaryexpression; + +import ast.ASTNode; +import ast.expression.IExpressionNode; + +public class NotExpressionNode implements ASTNode { + public IExpressionNode expression; + + public NotExpressionNode(IExpressionNode expression) { + this.expression = expression; + } + +} diff --git a/src/main/java/ast/expressions/unaryexpression/UnaryExpressionNode.java b/src/main/java/ast/expressions/unaryexpression/UnaryExpressionNode.java new file mode 100644 index 0000000..4393e84 --- /dev/null +++ b/src/main/java/ast/expressions/unaryexpression/UnaryExpressionNode.java @@ -0,0 +1,64 @@ +package ast.expression.unaryexpression; + +import ast.expression.IExpressionNode; +import ast.statement.IStatementNode; +import ast.type.type.*; +import ast.type.ValueNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +import java.util.Objects; + +public class UnaryExpressionNode implements IExpressionNode { + public String thisExp; + public String identifier; + public MemberAccessNode memberAccess; + public ValueNode value; + public NotExpressionNode notExpression; + public IStatementNode statement; + public IExpressionNode expression; + private ITypeNode type; + + public UnaryExpressionNode(String value) { + if(Objects.equals(value, "this")) { + this.thisExp = "this"; + } else { + this.identifier = value; + } + } + + public UnaryExpressionNode(MemberAccessNode memberAccess) { + this.memberAccess = memberAccess; + } + + public UnaryExpressionNode(ValueNode value) { + this.value = value; + } + + public UnaryExpressionNode(NotExpressionNode notExpression) { + this.notExpression = notExpression; + } + + public UnaryExpressionNode(IStatementNode statement) { + this.statement = statement; + } + + public UnaryExpressionNode(IExpressionNode expression) { + this.expression = expression; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + + @Override + public ITypeNode getType() { + return type; + } + + public void setType(ITypeNode type) { + this.type = type; + } + +} diff --git a/src/main/java/ast/members/ConstructorNode.java b/src/main/java/ast/members/ConstructorNode.java index 9df3dba..52d7604 100644 --- a/src/main/java/ast/members/ConstructorNode.java +++ b/src/main/java/ast/members/ConstructorNode.java @@ -1,21 +1,27 @@ -package ast.members; +package ast.member; -import ast.statements.BlockStatementNode; -import ast.parameters.ParameterNode; +import ast.block.BlockNode; +import ast.parameter.ParameterNode; import ast.type.AccessModifierNode; -import bytecode.visitor.MethodVisitor; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; import visitor.Visitable; import java.util.ArrayList; import java.util.List; -public class ConstructorNode extends MethodNode implements Visitable { +public class ConstructorNode extends MethodNode { public AccessModifierNode accessType; public String identifier; public List parameters = new ArrayList<>(); - public BlockStatementNode body; + public BlockNode body; - public ConstructorNode(String accessType, String identifier, BlockStatementNode body) { + public ConstructorNode(AccessModifierNode accessType, String identifier) { + this.accessType = accessType; + this.identifier = identifier; + } + + public ConstructorNode(String accessType, String identifier, BlockNode body) { this.accessType = new AccessModifierNode(accessType); this.identifier = identifier; this.body = body; @@ -25,8 +31,4 @@ public class ConstructorNode extends MethodNode implements Visitable { parameters.add(parameterNode); } - @Override - public void accept(MethodVisitor methodVisitor) { - methodVisitor.visit(this); - } } diff --git a/src/main/java/ast/members/FieldNode.java b/src/main/java/ast/members/FieldNode.java index f04e3f5..86d2f59 100644 --- a/src/main/java/ast/members/FieldNode.java +++ b/src/main/java/ast/members/FieldNode.java @@ -1,20 +1,17 @@ package ast.members; import ast.type.AccessModifierNode; -import ast.type.TypeNode; -import bytecode.visitor.ClassVisitor; +import ast.type.type.ITypeNode; import semantic.SemanticVisitor; import typechecker.TypeCheckResult; import visitor.Visitable; public class FieldNode implements MemberNode, Visitable { public AccessModifierNode accessTypeNode; - public TypeNode type; + public ITypeNode type; public String identifier; - public FieldNode(){} - - public FieldNode(AccessModifierNode accessTypeNode, TypeNode type, String name){ + public FieldNode(AccessModifierNode accessTypeNode, ITypeNode type, String name){ this.accessTypeNode = accessTypeNode; this.type = type; this.identifier = name; @@ -25,8 +22,4 @@ public class FieldNode implements MemberNode, Visitable { return visitor.analyze(this); } - @Override - public void accept(ClassVisitor classVisitor) { - classVisitor.visit(this); - } } diff --git a/src/main/java/ast/members/MainMethodNode.java b/src/main/java/ast/members/MainMethodNode.java new file mode 100644 index 0000000..e50cc4f --- /dev/null +++ b/src/main/java/ast/members/MainMethodNode.java @@ -0,0 +1,11 @@ +package ast.member; + +import ast.block.BlockNode; + +public class MainMethodNode extends MethodNode { + public BlockNode block; + + public MainMethodNode(BlockNode block) { + this.block = block; + } +} diff --git a/src/main/java/ast/members/MethodNode.java b/src/main/java/ast/members/MethodNode.java index 3983f28..caa585d 100644 --- a/src/main/java/ast/members/MethodNode.java +++ b/src/main/java/ast/members/MethodNode.java @@ -1,5 +1,9 @@ package ast.members; +import ast.block.BlockNode; +import ast.parameter.ParameterNode; +import ast.type.AccessModifierNode; +import ast.type.type.*; import bytecode.visitor.MethodVisitor; import semantic.SemanticVisitor; import typechecker.TypeCheckResult; @@ -7,46 +11,46 @@ import visitor.Visitable; import java.util.ArrayList; import java.util.List; +import java.util.Objects; public class MethodNode implements MemberNode, Visitable { - public AccessModifierNode accessModifier; - public TypeNode type; - public String identifier; + public AccessModifierNode accesModifier; + private ITypeNode type; + public Boolean voidType; + private String identifier; + public List parameters = new ArrayList<>(); + public BlockNode block; - public ParameterListNode parameters; + public MethodNode() {} - public List statements = new ArrayList<>(); - - public MethodNode(){} - - public MethodNode(AccessTypeNode visibility, TypeNode type, String identifier, ParameterListNode parameters, - List statements){ - this.visibility = visibility; + public MethodNode(String accessModifier, ITypeNode type, Boolean voidType, String identifier, BlockNode block){ + this.accesModifier = new AccessModifierNode(accessModifier); this.type = type; + this.voidType = voidType; this.identifier = identifier; - this.parameters = parameters; - this.statements = statements; + this.block = block; } - public MethodNode(AccessTypeNode visibility, String identifier){ - this.visibility = visibility; - this.identifier = identifier; + public void addParameter(ParameterNode parameter) { + this.parameters.add(parameter); + } + + public List getParameters() { + return parameters; } public boolean isSame(MethodNode methodNode){ - boolean isSame = false; - if(methodNode.identifier.equals(identifier)){ - if(parameters != null && methodNode.parameters != null){ - if(parameters.parameters.size() == methodNode.parameters.parameters.size()){ - for(int i = 0; i < parameters.parameters.size(); i++){ - if(parameters.parameters.get(i).identifier.equals(methodNode.parameters.parameters.get(i).identifier)){ - isSame = true; - } - } - } + if (!(Objects.equals(this.identifier, methodNode.getIdentifier())) || type.equals(methodNode.type) + || getParameters().size() != methodNode.getParameters().size()) { + return false; + } + + for (int i = 0; i < this.getParameters().size(); i++) { + if (this.getParameters().get(i).type.equals(methodNode.getParameters().get(i).type)) { + return false; } } - return isSame; + return true; } @Override @@ -58,4 +62,21 @@ public class MethodNode implements MemberNode, Visitable { public void accept(MethodVisitor methodVisitor) { methodVisitor.visit(this); } + + public String getIdentifier() { + return identifier; + } + + public ITypeNode getType() { + return type; + } + + public void setType(ITypeNode type) { + this.type = type; + } + + public void setIdentifier(String identifier) { + this.identifier = identifier; + } + } diff --git a/src/main/java/ast/parameters/ParameterNode.java b/src/main/java/ast/parameters/ParameterNode.java index ba12aab..f3ec9bd 100644 --- a/src/main/java/ast/parameters/ParameterNode.java +++ b/src/main/java/ast/parameters/ParameterNode.java @@ -1,14 +1,23 @@ package ast.parameters; import ast.ASTNode; -import ast.type.TypeNode; +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; +import visitor.Visitable; -public class ParameterNode implements ASTNode { - TypeNode type; - String identifier; +public class ParameterNode implements ASTNode, Visitable { + public ITypeNode type; + public String identifier; - public ParameterNode(TypeNode type, String identifier) { + public ParameterNode(ITypeNode type, String identifier) { this.type = type; this.identifier = identifier; } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/statement/ForStatementNode.java b/src/main/java/ast/statement/ForStatementNode.java new file mode 100644 index 0000000..3d4ad16 --- /dev/null +++ b/src/main/java/ast/statement/ForStatementNode.java @@ -0,0 +1,31 @@ +package ast.statement; + +import ast.ASTNode; +import ast.expression.IExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class ForStatementNode implements IStatementNode { + public IExpressionNode statementExpressionInit; + public IStatementNode localVariableDeclarationInit; + public IExpressionNode expression; + public IExpressionNode statementExpression; + + public ForStatementNode(IExpressionNode statementExpressionInit, IExpressionNode expression, IExpressionNode statementExpression) { + this.statementExpressionInit = statementExpressionInit; + this.expression = expression; + this.statementExpression = statementExpression; + } + + public ForStatementNode(IStatementNode localVariableDeclarationInit, IExpressionNode expression, IExpressionNode statementExpression) { + this.localVariableDeclarationInit = localVariableDeclarationInit; + this.expression = expression; + this.statementExpression = statementExpression; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statement/WhileStatementNode.java b/src/main/java/ast/statement/WhileStatementNode.java new file mode 100644 index 0000000..3aabb73 --- /dev/null +++ b/src/main/java/ast/statement/WhileStatementNode.java @@ -0,0 +1,23 @@ +package ast.statement; + +import ast.ASTNode; +import ast.block.BlockNode; +import ast.expression.IExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class WhileStatementNode implements IStatementNode { + public IExpressionNode expression; + public BlockNode block; + + public WhileStatementNode(IExpressionNode expression, BlockNode block) { + this.expression = expression; + this.block = block; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statement/ifstatement/ElseStatementNode.java b/src/main/java/ast/statement/ifstatement/ElseStatementNode.java new file mode 100644 index 0000000..709fe2f --- /dev/null +++ b/src/main/java/ast/statement/ifstatement/ElseStatementNode.java @@ -0,0 +1,21 @@ +package ast.statement.ifstatement; + +import ast.ASTNode; +import ast.block.BlockNode; +import ast.statement.IStatementNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class ElseStatementNode implements IStatementNode { + public BlockNode block; + + public ElseStatementNode(BlockNode block) { + this.block = block; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statement/ifstatement/IfElseStatementNode.java b/src/main/java/ast/statement/ifstatement/IfElseStatementNode.java new file mode 100644 index 0000000..6967f75 --- /dev/null +++ b/src/main/java/ast/statement/ifstatement/IfElseStatementNode.java @@ -0,0 +1,28 @@ +package ast.statement.ifstatement; + +import ast.ASTNode; +import ast.statement.IStatementNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +import java.util.ArrayList; +import java.util.List; + +public class IfElseStatementNode implements IStatementNode { + public IfStatementNode ifStatement; + public List elseStatements = new ArrayList<>(); + + public IfElseStatementNode(IfStatementNode ifStatement) { + this.ifStatement = ifStatement; + } + + public void addElseStatement(ElseStatementNode elseStatement) { + elseStatements.add(elseStatement); + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statement/ifstatement/IfStatementNode.java b/src/main/java/ast/statement/ifstatement/IfStatementNode.java new file mode 100644 index 0000000..7bcbabf --- /dev/null +++ b/src/main/java/ast/statement/ifstatement/IfStatementNode.java @@ -0,0 +1,24 @@ +package ast.statement.ifstatement; + +import ast.ASTNode; +import ast.block.BlockNode; +import ast.expression.IExpressionNode; +import ast.statement.IStatementNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class IfStatementNode implements IStatementNode { + public IExpressionNode expression; + public BlockNode block; + + public IfStatementNode(IExpressionNode expression, BlockNode block) { + this.expression = expression; + this.block = block; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statement/statementexpression/methodcallstatementnexpression/TargetNode.java b/src/main/java/ast/statement/statementexpression/methodcallstatementnexpression/TargetNode.java new file mode 100644 index 0000000..7a18125 --- /dev/null +++ b/src/main/java/ast/statement/statementexpression/methodcallstatementnexpression/TargetNode.java @@ -0,0 +1,28 @@ +package ast.statement.statementexpression.methodcallstatementnexpression; + +import ast.ASTNode; +import ast.expression.unaryexpression.MemberAccessNode; +import ast.statement.statementexpression.NewDeclarationStatementExpressionNode; + +public class TargetNode implements ASTNode { + public Boolean thisTar; + public MemberAccessNode memberAccess; + public NewDeclarationStatementExpressionNode newDeclaration; + public String identifier; + + public TargetNode(Boolean thisTar) { + this.thisTar = thisTar; + } + + public TargetNode(MemberAccessNode memberAccess) { + this.memberAccess = memberAccess; + } + + public TargetNode(NewDeclarationStatementExpressionNode newDeclaration) { + this.newDeclaration = newDeclaration; + } + + public TargetNode(String identifier) { + this.identifier = identifier; + } +} diff --git a/src/main/java/ast/statementexpressions/AssignStatementExpressionNode.java b/src/main/java/ast/statementexpressions/AssignStatementExpressionNode.java index 3c63e81..df8fe79 100644 --- a/src/main/java/ast/statementexpressions/AssignStatementExpressionNode.java +++ b/src/main/java/ast/statementexpressions/AssignStatementExpressionNode.java @@ -1,15 +1,21 @@ -package ast.statementexpressions; +package ast.statement.statementexpression; -import ast.ASTNode; -import ast.expressions.AssignableExpressionNode; -import ast.expressions.ExpressionNode; +import ast.expression.IExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; -public class AssignStatementExpressionNode implements ASTNode { - AssignableExpressionNode assignable; - ExpressionNode expression; +public class AssignStatementExpressionNode implements IStatementExpressionNode { + public AssignableExpressionNode assignable; + public IExpressionNode expression; - public AssignStatementExpressionNode(AssignableExpressionNode assignable, ExpressionNode expression) { + public AssignStatementExpressionNode(AssignableExpressionNode assignable, IExpressionNode expression) { this.assignable = assignable; this.expression = expression; } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/statementexpressions/AssignableExpressionNode.java b/src/main/java/ast/statementexpressions/AssignableExpressionNode.java new file mode 100644 index 0000000..0fb9fa9 --- /dev/null +++ b/src/main/java/ast/statementexpressions/AssignableExpressionNode.java @@ -0,0 +1,25 @@ +package ast.statement.statementexpression; + +import ast.expression.unaryexpression.MemberAccessNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class AssignableExpressionNode implements IStatementExpressionNode { + public String identifier; + + public MemberAccessNode memberAccess; + + public AssignableExpressionNode(String identifier) { + this.identifier = identifier; + } + + public AssignableExpressionNode(MemberAccessNode memberAccess) { + this.memberAccess = memberAccess; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statementexpressions/CrementExpressionStatementExpressionNode.java b/src/main/java/ast/statementexpressions/CrementExpressionStatementExpressionNode.java deleted file mode 100644 index e3292d5..0000000 --- a/src/main/java/ast/statementexpressions/CrementExpressionStatementExpressionNode.java +++ /dev/null @@ -1,20 +0,0 @@ -package ast.statementexpressions; - -import ast.ASTNode; -import ast.expressions.ExpressionNode; - -import java.util.ArrayList; -import java.util.List; - -public class CrementExpressionStatementExpressionNode implements ASTNode { - String identifier; - List expressions = new ArrayList<>(); - - public CrementExpressionStatementExpressionNode(String identifier) { - this.identifier = identifier; - } - - public void addExpression(ExpressionNode expression) { - expressions.add(expression); - } -} diff --git a/src/main/java/ast/statementexpressions/IStatementExpressionNode.java b/src/main/java/ast/statementexpressions/IStatementExpressionNode.java new file mode 100644 index 0000000..30998f6 --- /dev/null +++ b/src/main/java/ast/statementexpressions/IStatementExpressionNode.java @@ -0,0 +1,5 @@ +package ast.statement.statementexpression; + +import ast.statement.IStatementNode; + +public interface IStatementExpressionNode extends IStatementNode {} diff --git a/src/main/java/ast/statementexpressions/NewDeclarationStatementExpressionNode.java b/src/main/java/ast/statementexpressions/NewDeclarationStatementExpressionNode.java index 0ea4a35..20541bb 100644 --- a/src/main/java/ast/statementexpressions/NewDeclarationStatementExpressionNode.java +++ b/src/main/java/ast/statementexpressions/NewDeclarationStatementExpressionNode.java @@ -1,20 +1,28 @@ -package ast.statementexpressions; +package ast.statement.statementexpression; import ast.ASTNode; -import ast.expressions.ExpressionNode; +import ast.expression.IExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; import java.util.ArrayList; import java.util.List; -public class NewDeclarationStatementExpressionNode implements ASTNode { - String identifier; - List expressions = new ArrayList<>(); +public class NewDeclarationStatementExpressionNode implements IStatementExpressionNode { + public String identifier; + public List expressions = new ArrayList<>(); public NewDeclarationStatementExpressionNode(String identifier) { this.identifier = identifier; } - public void addExpression(ExpressionNode expression) { + public void addExpression(IExpressionNode expression) { expressions.add(expression); } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/statementexpressions/crementExpression/CrementType.java b/src/main/java/ast/statementexpressions/crementExpression/CrementType.java new file mode 100644 index 0000000..d300bfb --- /dev/null +++ b/src/main/java/ast/statementexpressions/crementExpression/CrementType.java @@ -0,0 +1,5 @@ +package ast.statement.statementexpression.crementExpression; + +public enum CrementType { + PREFIX, SUFFIX +} diff --git a/src/main/java/ast/statementexpressions/crementExpression/DecrementExpressionNode.java b/src/main/java/ast/statementexpressions/crementExpression/DecrementExpressionNode.java new file mode 100644 index 0000000..372b4ea --- /dev/null +++ b/src/main/java/ast/statementexpressions/crementExpression/DecrementExpressionNode.java @@ -0,0 +1,22 @@ +package ast.statement.statementexpression.crementExpression; + +import ast.ASTNode; +import ast.statement.statementexpression.AssignableExpressionNode; +import ast.statement.statementexpression.IStatementExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class DecrementExpressionNode implements IStatementExpressionNode { + public CrementType crementType; + public AssignableExpressionNode assignableExpression; + + public DecrementExpressionNode(CrementType crementType, AssignableExpressionNode assignableExpression) { + this.assignableExpression = assignableExpression; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statementexpressions/crementExpression/IncrementExpressionNode.java b/src/main/java/ast/statementexpressions/crementExpression/IncrementExpressionNode.java new file mode 100644 index 0000000..a87934d --- /dev/null +++ b/src/main/java/ast/statementexpressions/crementExpression/IncrementExpressionNode.java @@ -0,0 +1,22 @@ +package ast.statement.statementexpression.crementExpression; + +import ast.ASTNode; +import ast.statement.statementexpression.AssignableExpressionNode; +import ast.statement.statementexpression.IStatementExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; + +public class IncrementExpressionNode implements IStatementExpressionNode { + public CrementType crementType; + public AssignableExpressionNode assignableExpression; + + public IncrementExpressionNode(CrementType crementType, AssignableExpressionNode assignableExpression) { + this.assignableExpression = assignableExpression; + } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + +} diff --git a/src/main/java/ast/statementexpressions/methodcallstatementnexpression/ChainedMethodNode.java b/src/main/java/ast/statementexpressions/methodcallstatementnexpression/ChainedMethodNode.java index 9f6919d..c20e9bc 100644 --- a/src/main/java/ast/statementexpressions/methodcallstatementnexpression/ChainedMethodNode.java +++ b/src/main/java/ast/statementexpressions/methodcallstatementnexpression/ChainedMethodNode.java @@ -1,20 +1,20 @@ -package ast.statementexpressions.methodcallstatementnexpression; +package ast.statement.statementexpression.methodcallstatementnexpression; import ast.ASTNode; -import ast.expressions.ExpressionNode; +import ast.expression.IExpressionNode; import java.util.ArrayList; import java.util.List; public class ChainedMethodNode implements ASTNode { - String identifier; - List expressions = new ArrayList<>(); + public String identifier; + public List expressions = new ArrayList<>(); public ChainedMethodNode(String identifier) { this.identifier = identifier; } - public void addExpression(ExpressionNode expression) { + public void addExpression(IExpressionNode expression) { expressions.add(expression); } } diff --git a/src/main/java/ast/statementexpressions/methodcallstatementnexpression/MethodCallStatementExpressionNode.java b/src/main/java/ast/statementexpressions/methodcallstatementnexpression/MethodCallStatementExpressionNode.java index e92ad1c..6a2f69b 100644 --- a/src/main/java/ast/statementexpressions/methodcallstatementnexpression/MethodCallStatementExpressionNode.java +++ b/src/main/java/ast/statementexpressions/methodcallstatementnexpression/MethodCallStatementExpressionNode.java @@ -1,16 +1,19 @@ -package ast.statementexpressions.methodcallstatementnexpression; +package ast.statement.statementexpression.methodcallstatementnexpression; import ast.ASTNode; -import ast.expressions.ExpressionNode; +import ast.expression.IExpressionNode; +import ast.statement.statementexpression.IStatementExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; import java.util.ArrayList; import java.util.List; -public class MethodCallStatementExpressionNode implements ASTNode { - TargetNode target; - List chainedMethods = new ArrayList<>(); - String identifier; - List expressions = new ArrayList<>(); +public class MethodCallStatementExpressionNode implements IStatementExpressionNode { + public TargetNode target; + public List chainedMethods = new ArrayList<>(); + public String identifier; + public List expressions = new ArrayList<>(); public MethodCallStatementExpressionNode(TargetNode target, String identifier) { this.target = target; @@ -21,9 +24,13 @@ public class MethodCallStatementExpressionNode implements ASTNode { chainedMethods.add(chainedMethode); } - public void addExpression(ExpressionNode expression) { + public void addExpression(IExpressionNode expression) { expressions.add(expression); } + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } } diff --git a/src/main/java/ast/statements/BlockStatementNode.java b/src/main/java/ast/statements/BlockStatementNode.java index 49b2b86..ab2d70b 100644 --- a/src/main/java/ast/statements/BlockStatementNode.java +++ b/src/main/java/ast/statements/BlockStatementNode.java @@ -1,14 +1,29 @@ -package ast.statements; +package ast.block; import ast.ASTNode; +import ast.statement.IStatementNode; +import ast.statement.ReturnStatementNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; +import visitor.Visitable; +import java.beans.Visibility; import java.util.ArrayList; import java.util.List; -public class BlockStatementNode extends StatementNode implements ASTNode { - public List statements = new ArrayList<>(); +public class BlockNode implements ASTNode, Visitable { + public List statements = new ArrayList<>(); + public Boolean hasReturnStatement = false; - public void addStatement(StatementNode statement) { + public BlockNode() {} + + public void addStatement(IStatementNode statement) { statements.add(statement); } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/statements/IStatementNode.java b/src/main/java/ast/statements/IStatementNode.java new file mode 100644 index 0000000..c726bb3 --- /dev/null +++ b/src/main/java/ast/statements/IStatementNode.java @@ -0,0 +1,7 @@ +package ast.statement; + +import ast.ASTNode; +import visitor.Visitable; + +public interface IStatementNode extends ASTNode, Visitable { +} diff --git a/src/main/java/ast/statements/LocalVariableDeclarationNode.java b/src/main/java/ast/statements/LocalVariableDeclarationNode.java index 0e46684..3ab54e0 100644 --- a/src/main/java/ast/statements/LocalVariableDeclarationNode.java +++ b/src/main/java/ast/statements/LocalVariableDeclarationNode.java @@ -1,19 +1,26 @@ -package ast.statements; +package ast.statement; -import ast.ASTNode; -import ast.expressions.ExpressionNode; -import ast.type.TypeNode; +import ast.expression.IExpressionNode; +import ast.type.type.*; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; -public class LocalVariableDeclarationNode implements ASTNode { - TypeNode type; - String identifier; - String assign; - ExpressionNode expression; +public class LocalVariableDeclarationNode implements IStatementNode { + public ITypeNode type; + public String identifier; + public String assign; + public IExpressionNode expression; - public LocalVariableDeclarationNode(TypeNode type, String identifier, String assign, ExpressionNode expression) { + public LocalVariableDeclarationNode(ITypeNode type, String identifier, String assign, IExpressionNode expression) { this.type = type; this.identifier = identifier; this.assign = assign; this.expression = expression; } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/statements/ReturnStatementNode.java b/src/main/java/ast/statements/ReturnStatementNode.java index 25a0e01..e525c3f 100644 --- a/src/main/java/ast/statements/ReturnStatementNode.java +++ b/src/main/java/ast/statements/ReturnStatementNode.java @@ -1,12 +1,24 @@ -package ast.statements; +package ast.statement; -import ast.ASTNode; -import ast.expressions.ExpressionNode; +import ast.expression.IExpressionNode; +import semantic.SemanticVisitor; +import typechecker.TypeCheckResult; -public class ReturnStatementNode implements ASTNode { - public ExpressionNode expression; +public class ReturnStatementNode implements IStatementNode { + public IExpressionNode expression; + public Boolean voidReturn = false; - public ReturnStatementNode(ExpressionNode expression) { - this.expression = expression; + public ReturnStatementNode(IExpressionNode expression) { + if(expression != null) { + this.expression = expression; + } else { + voidReturn = true; + } } + + @Override + public TypeCheckResult accept(SemanticVisitor visitor) { + return visitor.analyze(this); + } + } diff --git a/src/main/java/ast/type/AccessModifierNode.java b/src/main/java/ast/type/AccessModifierNode.java index 14081db..45f9172 100644 --- a/src/main/java/ast/type/AccessModifierNode.java +++ b/src/main/java/ast/type/AccessModifierNode.java @@ -1,7 +1,7 @@ package ast.type; public class AccessModifierNode { - EnumAccessModifierNode accessType; + public EnumAccessModifierNode accessType; public AccessModifierNode(String accessModifier) { setModifier(accessModifier); diff --git a/src/main/java/ast/type/EnumTypeNode.java b/src/main/java/ast/type/EnumTypeNode.java deleted file mode 100644 index 98c38ea..0000000 --- a/src/main/java/ast/type/EnumTypeNode.java +++ /dev/null @@ -1,5 +0,0 @@ -package ast.type; - -public enum EnumTypeNode { - INT, BOOLEAN, CHAR, IDENTIFIER -} diff --git a/src/main/java/ast/type/EnumValueNode.java b/src/main/java/ast/type/EnumValueNode.java new file mode 100644 index 0000000..eabb824 --- /dev/null +++ b/src/main/java/ast/type/EnumValueNode.java @@ -0,0 +1,5 @@ +package ast.type; + +public enum EnumValueNode { + INT_VALUE, BOOLEAN_VALUE, CHAR_VALUE, NULL_VALUE +} diff --git a/src/main/java/ast/type/TypeNode.java b/src/main/java/ast/type/TypeNode.java deleted file mode 100644 index 6336208..0000000 --- a/src/main/java/ast/type/TypeNode.java +++ /dev/null @@ -1,25 +0,0 @@ -package ast.type; - -public class TypeNode { - EnumTypeNode type; - - public TypeNode(String type) { - setType(type); - } - - private void setType(String type) { - switch(type) { - case "int": - this.type = EnumTypeNode.INT; - break; - case "boolean": - this.type = EnumTypeNode.BOOLEAN; - break; - case "char": - this.type = EnumTypeNode.CHAR; - break; - default: - this.type = EnumTypeNode.IDENTIFIER; - } - } -} diff --git a/src/main/java/ast/type/ValueNode.java b/src/main/java/ast/type/ValueNode.java new file mode 100644 index 0000000..b51f799 --- /dev/null +++ b/src/main/java/ast/type/ValueNode.java @@ -0,0 +1,13 @@ +package ast.type; + +import ast.ASTNode; + +public class ValueNode implements ASTNode { + public EnumValueNode valueType; + public String value; + + public ValueNode(EnumValueNode valueType, String value) { + this.valueType = valueType; + this.value = value; + } +} diff --git a/src/main/java/ast/type/type/BaseType.java b/src/main/java/ast/type/type/BaseType.java new file mode 100644 index 0000000..fdfb293 --- /dev/null +++ b/src/main/java/ast/type/type/BaseType.java @@ -0,0 +1,30 @@ +package ast.type.type; + +public class BaseType implements ITypeNode { + + private TypeEnum typeEnum; + + public BaseType(TypeEnum typeEnum) { + this.typeEnum = typeEnum; + } + + public TypeEnum getTypeEnum() { + return typeEnum; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + BaseType other = (BaseType) obj; + if (typeEnum != other.typeEnum) + return false; + return true; + } + + +} diff --git a/src/main/java/ast/type/type/ITypeNode.java b/src/main/java/ast/type/type/ITypeNode.java new file mode 100644 index 0000000..e449e3c --- /dev/null +++ b/src/main/java/ast/type/type/ITypeNode.java @@ -0,0 +1,5 @@ +package ast.type.type; + +public interface ITypeNode { + +} diff --git a/src/main/java/ast/type/type/ReferenceType.java b/src/main/java/ast/type/type/ReferenceType.java new file mode 100644 index 0000000..2292046 --- /dev/null +++ b/src/main/java/ast/type/type/ReferenceType.java @@ -0,0 +1,33 @@ +package ast.type.type; + +public class ReferenceType implements ITypeNode{ + + private String identifier; + + public ReferenceType(String identifier) { + this.identifier = identifier; + } + + public String getIdentifier() { + return identifier; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + ReferenceType other = (ReferenceType) obj; + if (identifier == null) { + if (other.identifier != null) + return false; + } else if (!identifier.equals(other.identifier)) + return false; + return true; + } + + +} diff --git a/src/main/java/ast/type/type/TypeEnum.java b/src/main/java/ast/type/type/TypeEnum.java new file mode 100644 index 0000000..d46fac3 --- /dev/null +++ b/src/main/java/ast/type/type/TypeEnum.java @@ -0,0 +1,9 @@ +package ast.type.type; + +public enum TypeEnum { + VOID, + INT, + CHAR, + BOOL; + +} diff --git a/src/main/java/bytecode/ByteCodeGenerator.java b/src/main/java/bytecode/ByteCodeGenerator.java index 5494255..d85935a 100644 --- a/src/main/java/bytecode/ByteCodeGenerator.java +++ b/src/main/java/bytecode/ByteCodeGenerator.java @@ -10,7 +10,7 @@ public class ByteCodeGenerator implements ProgramVisitor { public void visit(ProgramNode programNode) { for (ClassNode classDeclarationNode : programNode.classes) { ClassCodeGen classCodeGen = new ClassCodeGen(); - classDeclarationNode.accept(classCodeGen); +// classDeclarationNode.accept(classCodeGen); } } } diff --git a/src/main/java/bytecode/ClassCodeGen.java b/src/main/java/bytecode/ClassCodeGen.java index a11034c..c911199 100644 --- a/src/main/java/bytecode/ClassCodeGen.java +++ b/src/main/java/bytecode/ClassCodeGen.java @@ -1,14 +1,13 @@ package bytecode; import ast.ClassNode; -import ast.members.FieldNode; -import ast.members.MemberNode; -import ast.members.MethodNode; -import ast.type.BaseTypeNode; +import ast.member.FieldNode; +import ast.member.MemberNode; +import ast.member.MethodNode; +import ast.type.type.BaseType; import bytecode.visitor.ClassVisitor; import java.io.File; import org.objectweb.asm.ClassWriter; -import org.objectweb.asm.Opcodes; import java.io.FileOutputStream; import java.io.IOException; @@ -25,8 +24,8 @@ public class ClassCodeGen implements ClassVisitor { @Override public void visit(ClassNode classNode) { classWriter = new ClassWriter(ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS); - classWriter.visit(Opcodes.V1_5, mapper.mapAccessTypeToOpcode(classNode.accessType), classNode.identifier, null, - "java/lang/Object", null); +// classWriter.visit(Opcodes.V1_5, mapper.mapAccessTypeToOpcode(classNode.accessType), classNode.identifier, null, +// "java/lang/Object", null); for (MemberNode memberNode : classNode.members) { if (memberNode instanceof FieldNode) { @@ -45,8 +44,8 @@ public class ClassCodeGen implements ClassVisitor { @Override public void visit(FieldNode fieldNode) { - if(fieldNode.type instanceof BaseTypeNode baseTypeNode){ - classWriter.visitField(mapper.mapAccessTypeToOpcode(fieldNode.accessTypeNode), fieldNode.identifier, mapper.getTypeChar(baseTypeNode.enumType), null, null ); + if(fieldNode.type instanceof BaseType baseTypeNode){ +// classWriter.visitField(mapper.mapAccessTypeToOpcode(fieldNode.accessTypeNode), fieldNode.identifier, mapper.getTypeChar(baseTypeNode.enumType), null, null ); } classWriter.visitEnd(); } diff --git a/src/main/java/bytecode/Mapper.java b/src/main/java/bytecode/Mapper.java index 54e9daa..5dad54c 100644 --- a/src/main/java/bytecode/Mapper.java +++ b/src/main/java/bytecode/Mapper.java @@ -1,44 +1,41 @@ package bytecode; -import ast.parameters.ParameterNode; import ast.type.*; -import org.objectweb.asm.Opcodes; -import ast.type.BaseTypeNode; public class Mapper { - public int mapAccessTypeToOpcode(AccessTypeNode type) { - switch (type.enumAccessTypeNode) { - case EnumAccessTypeNode.PUBLIC: - return Opcodes.ACC_PUBLIC; - case EnumAccessTypeNode.PRIVATE: - return Opcodes.ACC_PRIVATE; - } - return 0; - } +// public int mapAccessTypeToOpcode(AccessModifierNode type) { +// switch (type.enumAccessTypeNode) { +// case EnumAccessTypeNode.PUBLIC: +// return Opcodes.ACC_PUBLIC; +// case EnumAccessTypeNode.PRIVATE: +// return Opcodes.ACC_PRIVATE; +// } +// return 0; +// } - public String generateMethodDescriptor(BaseTypeNode baseTypeNode, ParameterListNode parameterListNode) { - String descriptor = "("; - for(ParameterNode parameterNode : parameterListNode.parameters) { - descriptor += getTypeChar(EnumTypeNode.INT); - } - descriptor += ")"; - descriptor += getTypeChar(baseTypeNode.enumType); - return descriptor; - } +// public String generateMethodDescriptor(BaseTypeNode baseTypeNode, ParameterListNode parameterListNode) { +// String descriptor = "("; +// for(ParameterNode parameterNode : parameterListNode.parameters) { +// descriptor += getTypeChar(EnumTypeNode.INT); +// } +// descriptor += ")"; +// descriptor += getTypeChar(baseTypeNode.enumType); +// return descriptor; +// } - public String getTypeChar(EnumTypeNode enumTypeNode) { - String typeChar = ""; - switch (enumTypeNode) { - case EnumTypeNode.INT: - typeChar = "I"; - break; - case EnumTypeNode.CHAR: - typeChar = "C"; - break; - case EnumTypeNode.BOOLEAN: - typeChar = "Z"; - break; - } - return typeChar; - } +// public String getTypeChar(TypeEnum enumTypeNode) { +// String typeChar = ""; +// switch (enumTypeNode) { +// case TypeEnum.INT: +// typeChar = "I"; +// break; +// case TypeEnum.CHAR: +// typeChar = "C"; +// break; +// case TypeEnum.BOOLEAN: +// typeChar = "Z"; +// break; +// } +// return typeChar; +// } } diff --git a/src/main/java/bytecode/MethodCodeGen.java b/src/main/java/bytecode/MethodCodeGen.java index 40bb745..358d540 100644 --- a/src/main/java/bytecode/MethodCodeGen.java +++ b/src/main/java/bytecode/MethodCodeGen.java @@ -1,13 +1,9 @@ package bytecode; -import ast.members.ConstructorNode; -import ast.members.MethodNode; -import ast.parameters.ParameterNode; -import ast.type.BaseTypeNode; +import ast.member.ConstructorNode; +import ast.member.MethodNode; import org.objectweb.asm.ClassWriter; -import org.objectweb.asm.Label; import org.objectweb.asm.MethodVisitor; -import org.objectweb.asm.Opcodes; import java.util.ArrayList; import java.util.List; @@ -31,12 +27,12 @@ public class MethodCodeGen implements bytecode.visitor.MethodVisitor { @Override public void visit(ConstructorNode constructorNode) { - methodVisitor = - classWriter.visitMethod(mapper.mapAccessTypeToOpcode(constructorNode.visibility), - "", - "()V", - null, - null); +// methodVisitor = +// classWriter.visitMethod(mapper.mapAccessTypeToOpcode(constructorNode.visibility), +// "", +// "()V", +// null, +// null); methodVisitor.visitCode(); methodVisitor.visitVarInsn(ALOAD, 0); methodVisitor.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "", "()V", false); @@ -47,52 +43,52 @@ public class MethodCodeGen implements bytecode.visitor.MethodVisitor { @Override public void visit(MethodNode methodNode) { - if (methodNode.type instanceof BaseTypeNode baseTypeNode) { - methodVisitor = classWriter.visitMethod(mapper.mapAccessTypeToOpcode(methodNode.visibility), - methodNode.identifier, - mapper.generateMethodDescriptor(baseTypeNode, methodNode.parameters), - null, - null); +// if (methodNode.type instanceof BaseTypeNode baseTypeNode) { +// methodVisitor = classWriter.visitMethod(mapper.mapAccessTypeToOpcode(methodNode.visibility), +// methodNode.identifier, +// mapper.generateMethodDescriptor(baseTypeNode, methodNode.parameters), +// null, +// null); methodVisitor.visitCode(); localVaribales.add("this"); - for (ParameterNode parameterNode : methodNode.parameters.parameters) { - localVaribales.add(parameterNode.identifier); - } +// for (ParameterNode parameterNode : methodNode.parameters.parameters) { +// localVaribales.add(parameterNode.identifier); +// } //test(); methodVisitor.visitMaxs(1, localVaribales.size()); methodVisitor.visitEnd(); - } +// } } - public void test() { - Label start = new Label(); - Label loop = new Label(); - Label end = new Label(); - methodVisitor.visitLabel(start); - //methodVisitor.visitVarInsn(Opcodes.ICONST_M1, 99); - //methodVisitor.visitInsn(Opcodes.ICONST_5); - methodVisitor.visitLdcInsn(99); - // methodVisitor.visitInsn(Opcodes.ICONST_0); - //methodVisitor.visitVarInsn(Opcodes.ILOAD, 2); - methodVisitor.visitVarInsn(Opcodes.ISTORE, 1); - methodVisitor.visitLabel(loop); - methodVisitor.visitVarInsn(Opcodes.ILOAD, 1); - methodVisitor.visitInsn(Opcodes.ICONST_5); - methodVisitor.visitJumpInsn(Opcodes.IF_ICMPGE, end); - methodVisitor.visitFieldInsn(Opcodes.GETSTATIC, - "java/lang/System", "out", - "Ljava/io/PrintStream;"); - methodVisitor.visitLdcInsn("Bytecode"); - methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, - "java/io/PrintStream", "println", - "(Ljava/lang/String;)V", false); - methodVisitor.visitIincInsn(1, 1); - methodVisitor.visitJumpInsn(Opcodes.GOTO, loop); - methodVisitor.visitLabel(end); - methodVisitor.visitVarInsn(Opcodes.ILOAD, 1); - methodVisitor.visitInsn(Opcodes.IRETURN); - methodVisitor.visitEnd(); - } +// public void test() { +// Label start = new Label(); +// Label loop = new Label(); +// Label end = new Label(); +// methodVisitor.visitLabel(start); +// //methodVisitor.visitVarInsn(Opcodes.ICONST_M1, 99); +// //methodVisitor.visitInsn(Opcodes.ICONST_5); +// methodVisitor.visitLdcInsn(99); +// // methodVisitor.visitInsn(Opcodes.ICONST_0); +// //methodVisitor.visitVarInsn(Opcodes.ILOAD, 2); +// methodVisitor.visitVarInsn(Opcodes.ISTORE, 1); +// methodVisitor.visitLabel(loop); +// methodVisitor.visitVarInsn(Opcodes.ILOAD, 1); +// methodVisitor.visitInsn(Opcodes.ICONST_5); +// methodVisitor.visitJumpInsn(Opcodes.IF_ICMPGE, end); +// methodVisitor.visitFieldInsn(Opcodes.GETSTATIC, +// "java/lang/System", "out", +// "Ljava/io/PrintStream;"); +// methodVisitor.visitLdcInsn("Bytecode"); +// methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, +// "java/io/PrintStream", "println", +// "(Ljava/lang/String;)V", false); +// methodVisitor.visitIincInsn(1, 1); +// methodVisitor.visitJumpInsn(Opcodes.GOTO, loop); +// methodVisitor.visitLabel(end); +// methodVisitor.visitVarInsn(Opcodes.ILOAD, 1); +// methodVisitor.visitInsn(Opcodes.IRETURN); +// methodVisitor.visitEnd(); +// } } diff --git a/src/main/java/parser/astBuilder/ASTBuilder.java b/src/main/java/parser/astBuilder/ASTBuilder.java index 3a7eb43..95ac93c 100644 --- a/src/main/java/parser/astBuilder/ASTBuilder.java +++ b/src/main/java/parser/astBuilder/ASTBuilder.java @@ -1,27 +1,35 @@ package parser.astBuilder; import ast.*; -import ast.statements.BlockStatementNode; -import ast.expressions.AssignableExpressionNode; -import ast.expressions.ExpressionNode; -import ast.statements.ElseStatementNode; -import ast.statements.IfElseStatementNode; -import ast.members.ConstructorNode; -import ast.members.MemberNode; -import ast.parameters.ParameterNode; -import ast.statements.*; -import ast.statements.IfStatementNode; -import ast.statementexpressions.AssignStatementExpressionNode; -import ast.statementexpressions.CrementExpressionStatementExpressionNode; -import ast.statementexpressions.methodcallstatementnexpression.ChainedMethodNode; -import ast.statementexpressions.methodcallstatementnexpression.MethodCallStatementExpressionNode; -import ast.statementexpressions.methodcallstatementnexpression.TargetNode; +import ast.block.BlockNode; +import ast.expression.*; +import ast.expression.binaryexpression.CalculationExpressionNode; +import ast.expression.binaryexpression.DotExpressionNode; +import ast.expression.binaryexpression.DotSubstractionExpressionNode; +import ast.expression.binaryexpression.NonCalculationExpressionNode; +import ast.expression.unaryexpression.MemberAccessNode; +import ast.expression.unaryexpression.NotExpressionNode; +import ast.expression.unaryexpression.UnaryExpressionNode; +import ast.member.*; +import ast.statement.ifstatement.ElseStatementNode; +import ast.statement.ifstatement.IfElseStatementNode; +import ast.parameter.ParameterNode; +import ast.statement.*; +import ast.statement.ifstatement.IfStatementNode; +import ast.statement.statementexpression.AssignStatementExpressionNode; +import ast.statement.statementexpression.AssignableExpressionNode; +import ast.statement.statementexpression.NewDeclarationStatementExpressionNode; +import ast.statement.statementexpression.crementExpression.CrementType; +import ast.statement.statementexpression.crementExpression.DecrementExpressionNode; +import ast.statement.statementexpression.crementExpression.IncrementExpressionNode; +import ast.statement.statementexpression.methodcallstatementnexpression.ChainedMethodNode; +import ast.statement.statementexpression.methodcallstatementnexpression.MethodCallStatementExpressionNode; +import ast.statement.statementexpression.methodcallstatementnexpression.TargetNode; import ast.type.*; +import ast.type.type.*; +import org.antlr.v4.runtime.tree.TerminalNode; import parser.generated.*; -import java.util.ArrayList; -import java.util.List; - public class ASTBuilder extends SimpleJavaBaseVisitor { @Override public ASTNode visitProgram(SimpleJavaParser.ProgramContext ctx) { @@ -44,16 +52,42 @@ public class ASTBuilder extends SimpleJavaBaseVisitor { @Override public ASTNode visitConstructorDeclaration(SimpleJavaParser.ConstructorDeclarationContext ctx) { - ConstructorNode constructorNode = new ConstructorNode(ctx.AccessModifier().getText(), ctx.Identifier().getText(), (BlockStatementNode) visit(ctx.block())); + ConstructorNode constructorNode = new ConstructorNode(ctx.AccessModifier().getText(), ctx.Identifier().getText(), (BlockNode) visit(ctx.block())); for(SimpleJavaParser.ParameterContext parameter : ctx.parameterList().parameter()) { constructorNode.addParameter((ParameterNode) visit(parameter)); } return constructorNode; } + @Override + public ASTNode visitMethodDeclaration(SimpleJavaParser.MethodDeclarationContext ctx) { + if(ctx.MainMethodDeclaration() != null) { + return new MainMethodNode((BlockNode) visit(ctx.block())); + } else { + if(ctx.type() != null) { + MethodNode methodNode = new MethodNode(ctx.AccessModifier().getText(), createTypeNode(ctx.type().getText()), false, ctx.Identifier().getText(), (BlockNode) visit(ctx.block())); + for(SimpleJavaParser.ParameterContext parameter : ctx.parameterList().parameter()) { + methodNode.addParameter((ParameterNode) visit(parameter)); + } + return methodNode; + } else { + MethodNode methodNode = new MethodNode(ctx.AccessModifier().getText(), null, true, ctx.Identifier().getText(), (BlockNode) visit(ctx.block())); + for(SimpleJavaParser.ParameterContext parameter : ctx.parameterList().parameter()) { + methodNode.addParameter((ParameterNode) visit(parameter)); + } + return methodNode; + } + } + } + + @Override + public ASTNode visitFieldDeclaration(SimpleJavaParser.FieldDeclarationContext ctx) { + return new FieldNode(new AccessModifierNode(ctx.AccessModifier().getText()), createTypeNode(ctx.type().getText()), ctx.Identifier().getText()); + } + @Override public ASTNode visitParameter(SimpleJavaParser.ParameterContext ctx) { - return new ParameterNode(new TypeNode(ctx.type().getText()), ctx.Identifier().getText()); + return new ParameterNode(createTypeNode(ctx.type().getText()), ctx.Identifier().getText()); } @Override @@ -62,8 +96,8 @@ public class ASTBuilder extends SimpleJavaBaseVisitor { return visitReturnStatement(ctx.returnStatement()); } else if(ctx.localVariableDeclaration() != null) { return visitLocalVariableDeclaration(ctx.localVariableDeclaration()); - } else if(ctx.blockStatement() != null) { - return visitBlockStatement(ctx.blockStatement()); + } else if(ctx.block() != null) { + return visitBlock(ctx.block()); } else if(ctx.whileStatement() != null) { return visitWhileStatement(ctx.whileStatement()); } else if(ctx.forStatement() != null) { @@ -78,105 +112,58 @@ public class ASTBuilder extends SimpleJavaBaseVisitor { @Override public ASTNode visitReturnStatement(SimpleJavaParser.ReturnStatementContext ctx) { - return new ReturnStatementNode((ExpressionNode) visit(ctx.expression())); + return new ReturnStatementNode((IExpressionNode) visit(ctx.expression())); } @Override public ASTNode visitLocalVariableDeclaration(SimpleJavaParser.LocalVariableDeclarationContext ctx) { - return new LocalVariableDeclarationNode(new TypeNode(ctx.type().getText()), ctx.Identifier().getText(), ctx.Assign().getText(), (ExpressionNode) visit(ctx.expression())); + return new LocalVariableDeclarationNode(createTypeNode(ctx.type().getText()), ctx.Identifier().getText(), ctx.Assign().getText(), (IExpressionNode) visit(ctx.expression())); } @Override - public ASTNode visitBlockStatement(SimpleJavaParser.BlockStatementContext ctx) { - BlockStatementNode blockNode = new BlockStatementNode(); + public ASTNode visitBlock(SimpleJavaParser.BlockContext ctx) { + BlockNode blockNode = new BlockNode(); for(SimpleJavaParser.StatementContext statement : ctx.statement()) { - blockNode.addStatement((StatementNode) visit(statement)); + blockNode.addStatement((IStatementNode) visit(statement)); + } + if(!blockNode.hasReturnStatement) { + blockNode.addStatement(new ReturnStatementNode(null)); } return blockNode; } @Override public ASTNode visitWhileStatement(SimpleJavaParser.WhileStatementContext ctx) { - return new WhileStatementNode((ExpressionNode) visit(ctx.expression()), (BlockStatementNode) visit(ctx.blockStatement())); - } - - @Override - public ASTNode visitDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx) { - ExpressionNode condition = (ExpressionNode) visit(ctx.expression()); - BlockStatementNode doBlock = (BlockStatementNode) visit(ctx.blockStatement()); - - WhileStatementNode whileStatement = new WhileStatementNode(condition, doBlock); - BlockStatementNode resultBlock = new BlockStatementNode(); - resultBlock.addStatement(doBlock); - resultBlock.addStatement(whileStatement); - - return resultBlock; + return new WhileStatementNode((IExpressionNode) visit(ctx.expression()), (BlockNode) visit(ctx.block())); } @Override public ASTNode visitForStatement(SimpleJavaParser.ForStatementContext ctx) { - - List statements = new ArrayList<>(); - - //init - if(ctx.statementExpression(0) != null){ - statements.add((StatementNode) visit(ctx.statementExpression(0))); - } else if (ctx.localVariableDeclaration() != null) { - statements.add((StatementNode) visit(ctx.localVariableDeclaration())); + if(ctx.statementExpression(0) != null) { + return new ForStatementNode((IExpressionNode) visit(ctx.statementExpression(0)), (IExpressionNode) visit(ctx.expression()), (IExpressionNode) visit(ctx.statementExpression(1))); + } else if(ctx.localVariableDeclaration() != null) { + return new ForStatementNode((IStatementNode) visit(ctx.localVariableDeclaration()), (IExpressionNode) visit(ctx.expression()), (IExpressionNode) visit(ctx.statementExpression(1))); } - - //condition - ExpressionNode condition = (ExpressionNode) visit(ctx.expression()); - - //ink - StatementNode increment = null; - if(ctx.statementExpression(1) != null){ - increment = (StatementNode) visit(ctx.statementExpression(1)); - } - - BlockStatementNode forBlock = (BlockStatementNode) visit(ctx.blockStatement()); - - if(increment != null){ - forBlock.addStatement((increment)); - } - - WhileStatementNode whileStatement = new WhileStatementNode(condition, forBlock); - - statements.add(whileStatement); - - BlockStatementNode resultBlock = new BlockStatementNode(); - for(StatementNode statement : statements) { - resultBlock.addStatement(statement); - } - - return resultBlock; + return null; } @Override public ASTNode visitIfElseStatement(SimpleJavaParser.IfElseStatementContext ctx) { - IfElseStatementNode ifElseStatementNode = new IfElseStatementNode((IfStatementNode) visit(ctx.ifStatement()), - (ElseStatementNode) visit(ctx.elseStatement())); - - for (SimpleJavaParser.ElseIfStatementContext elseIfStatement : ctx.elseIfStatement()){ - ifElseStatementNode.addElseIfStatement(((IfStatementNode) visit(elseIfStatement))); + IfElseStatementNode ifElseStatementNode = new IfElseStatementNode((IfStatementNode) visit(ctx.ifStatement())); + for(SimpleJavaParser.ElseStatementContext elseStatement : ctx.elseStatement()) { + ifElseStatementNode.addElseStatement((ElseStatementNode) visit(elseStatement)); } - return ifElseStatementNode; } @Override public ASTNode visitIfStatement(SimpleJavaParser.IfStatementContext ctx) { - return new IfStatementNode((ExpressionNode) visit(ctx.expression()), (BlockStatementNode) visit(ctx.blockStatement())); - } - - @Override - public ASTNode visitElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx) { - return new IfStatementNode((ExpressionNode) visit(ctx.expression()), (BlockStatementNode) visit(ctx.blockStatement())); + return new IfStatementNode((IExpressionNode) visit(ctx.expression()), (BlockNode) visit(ctx.block())); } @Override public ASTNode visitElseStatement(SimpleJavaParser.ElseStatementContext ctx) { - return new ElseStatementNode((BlockStatementNode) visit(ctx.blockStatement())); + return new ElseStatementNode((BlockNode) visit(ctx.block())); } @Override @@ -195,16 +182,16 @@ public class ASTBuilder extends SimpleJavaBaseVisitor { @Override public ASTNode visitAssign(SimpleJavaParser.AssignContext ctx) { - return new AssignStatementExpressionNode((AssignableExpressionNode) visit(ctx.assignableExpression()), (ExpressionNode) visit(ctx.expression())); + return new AssignStatementExpressionNode((AssignableExpressionNode) visit(ctx.assignableExpression()), (IExpressionNode) visit(ctx.expression())); } @Override public ASTNode visitNewDeclaration(SimpleJavaParser.NewDeclarationContext ctx) { - CrementExpressionStatementExpressionNode crementExpressionStatementNode = new CrementExpressionStatementExpressionNode(ctx.Identifier().getText()); + NewDeclarationStatementExpressionNode newDeclarationStatementExpressionNode = new NewDeclarationStatementExpressionNode(ctx.Identifier().getText()); for(SimpleJavaParser.ExpressionContext expression : ctx.argumentList().expression()) { - crementExpressionStatementNode.addExpression((ExpressionNode) visit(expression)); + newDeclarationStatementExpressionNode.addExpression((IExpressionNode) visit(expression)); } - return crementExpressionStatementNode; + return newDeclarationStatementExpressionNode; } @Override @@ -214,22 +201,215 @@ public class ASTBuilder extends SimpleJavaBaseVisitor { methodCallStatementExpressionNode.addChainedMethod((ChainedMethodNode) visit(chainedMethod)); } for(SimpleJavaParser.ExpressionContext expression : ctx.argumentList().expression()) { - methodCallStatementExpressionNode.addExpression((ExpressionNode) visit(expression)); + methodCallStatementExpressionNode.addExpression((IExpressionNode) visit(expression)); } return methodCallStatementExpressionNode; } @Override public ASTNode visitTarget(SimpleJavaParser.TargetContext ctx) { - + if(ctx.This() != null) { + return new TargetNode(true); + } else if(ctx.memberAccess() != null) { + return new TargetNode((MemberAccessNode) visit(ctx.memberAccess())); + } else if(ctx.newDeclaration() != null) { + return new TargetNode((NewDeclarationStatementExpressionNode) visit(ctx.newDeclaration())); + } else if(ctx.Identifier() != null) { + return new TargetNode(ctx.Identifier().getText()); + } + return null; } @Override public ASTNode visitChainedMethod(SimpleJavaParser.ChainedMethodContext ctx) { ChainedMethodNode chainedMethodNode = new ChainedMethodNode(ctx.Identifier().getText()); for(SimpleJavaParser.ExpressionContext expression : ctx.argumentList().expression()) { - chainedMethodNode.addExpression((ExpressionNode) visit(expression)); + chainedMethodNode.addExpression((IExpressionNode) visit(expression)); } return chainedMethodNode; } + + @Override + public ASTNode visitCrementExpression(SimpleJavaParser.CrementExpressionContext ctx) { + if(ctx.incrementExpression() != null) { + return visitIncrementExpression(ctx.incrementExpression()); + } else if(ctx.decrementExpression() != null) { + return visitDecrementExpression(ctx.decrementExpression()); + } + return null; + } + + @Override + public ASTNode visitIncrementExpression(SimpleJavaParser.IncrementExpressionContext ctx) { + if(ctx.prefixIncrementExpression() != null) { + return visitPrefixIncrementExpression(ctx.prefixIncrementExpression()); + } else if(ctx.suffixIncrementExpression() != null) { + return visitSuffixIncrementExpression(ctx.suffixIncrementExpression()); + } + return null; + } + + @Override + public ASTNode visitPrefixIncrementExpression(SimpleJavaParser.PrefixIncrementExpressionContext ctx) { + return new IncrementExpressionNode(CrementType.PREFIX, (AssignableExpressionNode) visit(ctx.assignableExpression())); + } + + @Override + public ASTNode visitSuffixIncrementExpression(SimpleJavaParser.SuffixIncrementExpressionContext ctx) { + return new IncrementExpressionNode(CrementType.SUFFIX, (AssignableExpressionNode) visit(ctx.assignableExpression())); + } + + @Override + public ASTNode visitDecrementExpression(SimpleJavaParser.DecrementExpressionContext ctx) { + if(ctx.prefixDecrementExpression() != null) { + return visitPrefixDecrementExpression(ctx.prefixDecrementExpression()); + } else if(ctx.suffixDecrementExpression() != null) { + return visitSuffixDecrementExpression(ctx.suffixDecrementExpression()); + } + return null; + } + + @Override + public ASTNode visitPrefixDecrementExpression(SimpleJavaParser.PrefixDecrementExpressionContext ctx) { + return new DecrementExpressionNode(CrementType.PREFIX, (AssignableExpressionNode) visit(ctx.assignableExpression())); + } + + @Override + public ASTNode visitSuffixDecrementExpression(SimpleJavaParser.SuffixDecrementExpressionContext ctx) { + return new DecrementExpressionNode(CrementType.SUFFIX, (AssignableExpressionNode) visit(ctx.assignableExpression())); + } + + @Override + public ASTNode visitExpression(SimpleJavaParser.ExpressionContext ctx) { + if(ctx.unaryExpression() != null) { + return visit(ctx.unaryExpression()); + } else if(ctx.binaryExpression() != null) { + return visit(ctx.binaryExpression()); + } + return null; + } + + @Override + public ASTNode visitUnaryExpression(SimpleJavaParser.UnaryExpressionContext ctx) { + if(ctx.This() != null) { + return new UnaryExpressionNode(ctx.This().getText()); + } else if(ctx.Identifier() != null) { + return new UnaryExpressionNode(ctx.Identifier().getText()); + } else if(ctx.memberAccess() != null) { + return new UnaryExpressionNode((MemberAccessNode) visitMemberAccess(ctx.memberAccess())); + } else if(ctx.value() != null) { + return new UnaryExpressionNode((ValueNode) visitValue(ctx.value())); + } else if(ctx.notExpression() != null) { + return new UnaryExpressionNode((NotExpressionNode) visitNotExpression(ctx.notExpression())); + } else if(ctx.statementExpression() != null) { + return new UnaryExpressionNode((IStatementNode) visitStatementExpression(ctx.statementExpression())); + } else if(ctx.expression() != null) { + return new UnaryExpressionNode((IExpressionNode) visitExpression(ctx.expression())); + } + return null; + } + + @Override + public ASTNode visitMemberAccess(SimpleJavaParser.MemberAccessContext ctx) { + MemberAccessNode memberAccessNode; + if(ctx.This() != null) { + memberAccessNode = new MemberAccessNode(true); + } else { + memberAccessNode = new MemberAccessNode(false); + } + for (TerminalNode identifierNode : ctx.Identifier()) { + memberAccessNode.addIdentifier(identifierNode.getText()); + } + return memberAccessNode; + } + + @Override + public ASTNode visitValue(SimpleJavaParser.ValueContext ctx) { + if(ctx.IntValue() != null) { + return new ValueNode(EnumValueNode.INT_VALUE, ctx.IntValue().getText()); + } else if(ctx.BooleanValue() != null) { + return new ValueNode(EnumValueNode.BOOLEAN_VALUE, ctx.BooleanValue().getText()); + } else if(ctx.CharValue() != null) { + return new ValueNode(EnumValueNode.CHAR_VALUE, ctx.CharValue().getText()); + } else if(ctx.NullValue() != null) { + return new ValueNode(EnumValueNode.NULL_VALUE, ctx.NullValue().getText()); + } + return null; + } + + @Override + public ASTNode visitNotExpression(SimpleJavaParser.NotExpressionContext ctx) { + return new NotExpressionNode((IExpressionNode) visitExpression(ctx.expression())); + } + + + @Override + public ASTNode visitBinaryExpression(SimpleJavaParser.BinaryExpressionContext ctx) { + if(ctx.calculationExpression() != null) { + return visit(ctx.calculationExpression()); + } else if(ctx.nonCalculationExpression() != null) { + return visit(ctx.nonCalculationExpression()); + } + return null; + } + + @Override + public ASTNode visitCalculationExpression(SimpleJavaParser.CalculationExpressionContext ctx) { + if(ctx.calculationExpression() != null) { + return new CalculationExpressionNode((CalculationExpressionNode) visit(ctx.calculationExpression()), ctx.LineOperator().getText(), (DotExpressionNode) visit(ctx.dotExpression())); + } else if(ctx.dotExpression() != null) { + return new CalculationExpressionNode((DotExpressionNode) visit(ctx.dotExpression())); + } + return null; + } + + @Override + public ASTNode visitDotExpression(SimpleJavaParser.DotExpressionContext ctx) { + if(ctx.dotExpression() != null) { + return new DotExpressionNode((DotExpressionNode) visit(ctx.dotExpression()), ctx.DotOperator().getText(), (DotSubstractionExpressionNode) visit(ctx.dotSubtractionExpression())); + } else if(ctx.dotSubtractionExpression() != null) { + return new DotExpressionNode((DotSubstractionExpressionNode) visit(ctx.dotSubtractionExpression())); + } + return null; + } + + @Override + public ASTNode visitDotSubtractionExpression(SimpleJavaParser.DotSubtractionExpressionContext ctx) { + if(ctx.IntValue() != null) { + return new DotSubstractionExpressionNode(new ValueNode(EnumValueNode.INT_VALUE, ctx.IntValue().getText())); + } else if(ctx.Identifier() != null) { + return new DotSubstractionExpressionNode(ctx.Identifier().getText()); + } else if(ctx.memberAccess() != null) { + return new DotSubstractionExpressionNode((MemberAccessNode) visit(ctx.memberAccess())); + } else if(ctx.methodCall() != null && ctx.calculationExpression() != null) { + return new DotSubstractionExpressionNode((MethodCallStatementExpressionNode) visit(ctx.methodCall()), (CalculationExpressionNode) visit(ctx.calculationExpression())); + } + return null; + } + + @Override + public ASTNode visitNonCalculationExpression(SimpleJavaParser.NonCalculationExpressionContext ctx) { + return new NonCalculationExpressionNode((UnaryExpressionNode) visit(ctx.unaryExpression()), ctx.nonCalculationOperator().getText(), (IExpressionNode) visit(ctx.expression())); + } + + @Override + public ASTNode visitAssignableExpression(SimpleJavaParser.AssignableExpressionContext ctx) { + if(ctx.Identifier() != null) { + return new AssignableExpressionNode(ctx.Identifier().getText()); + } else if(ctx.memberAccess() != null) { + return new AssignableExpressionNode((MemberAccessNode) visit(ctx.memberAccess())); + } + return null; + } + + public ITypeNode createTypeNode(String identifier){ + return switch (identifier) { + case "int" -> new BaseType(TypeEnum.INT); + case "boolean" -> new BaseType(TypeEnum.BOOL); + case "char" -> new BaseType(TypeEnum.CHAR); + case "void" -> new BaseType(TypeEnum.VOID); + default -> new ReferenceType(identifier); + }; + } + } diff --git a/src/main/java/parser/generated/SimpleJava.interp b/src/main/java/parser/generated/SimpleJava.interp index aca42bf..c21e97d 100644 --- a/src/main/java/parser/generated/SimpleJava.interp +++ b/src/main/java/parser/generated/SimpleJava.interp @@ -37,7 +37,6 @@ null 'class' 'this' 'while' -'do' 'if' 'else' 'for' @@ -91,7 +90,6 @@ Comma Class This While -Do If Else For @@ -117,15 +115,13 @@ parameterList parameter argumentList statement -blockStatement +block returnStatement localVariableDeclaration whileStatement -doWhileStatement forStatement ifElseStatement ifStatement -elseIfStatement elseStatement statementExpression assign @@ -156,4 +152,4 @@ nonCalculationOperator atn: -[4, 1, 51, 419, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 1, 0, 4, 0, 94, 8, 0, 11, 0, 12, 0, 95, 1, 1, 3, 1, 99, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 105, 8, 1, 10, 1, 12, 1, 108, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 115, 8, 2, 1, 3, 3, 3, 118, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 123, 8, 3, 1, 3, 1, 3, 1, 3, 1, 4, 3, 4, 129, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 3, 5, 138, 8, 5, 1, 5, 1, 5, 3, 5, 142, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 147, 8, 5, 1, 5, 1, 5, 3, 5, 151, 8, 5, 1, 6, 1, 6, 1, 6, 5, 6, 156, 8, 6, 10, 6, 12, 6, 159, 9, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 167, 8, 8, 10, 8, 12, 8, 170, 9, 8, 3, 8, 172, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 188, 8, 9, 1, 10, 1, 10, 5, 10, 192, 8, 10, 10, 10, 12, 10, 195, 9, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 201, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 207, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 227, 8, 15, 1, 15, 1, 15, 3, 15, 231, 8, 15, 1, 15, 1, 15, 3, 15, 235, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 5, 16, 242, 8, 16, 10, 16, 12, 16, 245, 9, 16, 1, 16, 3, 16, 248, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 270, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 284, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 296, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 303, 8, 26, 1, 27, 1, 27, 3, 27, 307, 8, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 3, 30, 317, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 327, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 334, 8, 34, 1, 34, 1, 34, 4, 34, 338, 8, 34, 11, 34, 12, 34, 339, 1, 34, 3, 34, 343, 8, 34, 1, 35, 1, 35, 3, 35, 347, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 355, 8, 36, 10, 36, 12, 36, 358, 9, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 366, 8, 37, 10, 37, 12, 37, 369, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 379, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 3, 40, 386, 8, 40, 1, 40, 5, 40, 389, 8, 40, 10, 40, 12, 40, 392, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 403, 8, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 0, 2, 72, 74, 46, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 0, 3, 2, 0, 4, 6, 48, 48, 1, 0, 44, 47, 1, 0, 11, 12, 430, 0, 93, 1, 0, 0, 0, 2, 98, 1, 0, 0, 0, 4, 114, 1, 0, 0, 0, 6, 117, 1, 0, 0, 0, 8, 128, 1, 0, 0, 0, 10, 150, 1, 0, 0, 0, 12, 152, 1, 0, 0, 0, 14, 160, 1, 0, 0, 0, 16, 171, 1, 0, 0, 0, 18, 187, 1, 0, 0, 0, 20, 189, 1, 0, 0, 0, 22, 198, 1, 0, 0, 0, 24, 202, 1, 0, 0, 0, 26, 208, 1, 0, 0, 0, 28, 214, 1, 0, 0, 0, 30, 222, 1, 0, 0, 0, 32, 239, 1, 0, 0, 0, 34, 249, 1, 0, 0, 0, 36, 255, 1, 0, 0, 0, 38, 262, 1, 0, 0, 0, 40, 269, 1, 0, 0, 0, 42, 271, 1, 0, 0, 0, 44, 275, 1, 0, 0, 0, 46, 283, 1, 0, 0, 0, 48, 295, 1, 0, 0, 0, 50, 297, 1, 0, 0, 0, 52, 302, 1, 0, 0, 0, 54, 306, 1, 0, 0, 0, 56, 308, 1, 0, 0, 0, 58, 311, 1, 0, 0, 0, 60, 316, 1, 0, 0, 0, 62, 318, 1, 0, 0, 0, 64, 321, 1, 0, 0, 0, 66, 326, 1, 0, 0, 0, 68, 342, 1, 0, 0, 0, 70, 346, 1, 0, 0, 0, 72, 348, 1, 0, 0, 0, 74, 359, 1, 0, 0, 0, 76, 378, 1, 0, 0, 0, 78, 380, 1, 0, 0, 0, 80, 385, 1, 0, 0, 0, 82, 402, 1, 0, 0, 0, 84, 406, 1, 0, 0, 0, 86, 412, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 416, 1, 0, 0, 0, 92, 94, 3, 2, 1, 0, 93, 92, 1, 0, 0, 0, 94, 95, 1, 0, 0, 0, 95, 93, 1, 0, 0, 0, 95, 96, 1, 0, 0, 0, 96, 1, 1, 0, 0, 0, 97, 99, 5, 7, 0, 0, 98, 97, 1, 0, 0, 0, 98, 99, 1, 0, 0, 0, 99, 100, 1, 0, 0, 0, 100, 101, 5, 35, 0, 0, 101, 102, 5, 48, 0, 0, 102, 106, 5, 31, 0, 0, 103, 105, 3, 4, 2, 0, 104, 103, 1, 0, 0, 0, 105, 108, 1, 0, 0, 0, 106, 104, 1, 0, 0, 0, 106, 107, 1, 0, 0, 0, 107, 109, 1, 0, 0, 0, 108, 106, 1, 0, 0, 0, 109, 110, 5, 32, 0, 0, 110, 3, 1, 0, 0, 0, 111, 115, 3, 6, 3, 0, 112, 115, 3, 8, 4, 0, 113, 115, 3, 10, 5, 0, 114, 111, 1, 0, 0, 0, 114, 112, 1, 0, 0, 0, 114, 113, 1, 0, 0, 0, 115, 5, 1, 0, 0, 0, 116, 118, 5, 7, 0, 0, 117, 116, 1, 0, 0, 0, 117, 118, 1, 0, 0, 0, 118, 119, 1, 0, 0, 0, 119, 120, 5, 48, 0, 0, 120, 122, 5, 29, 0, 0, 121, 123, 3, 12, 6, 0, 122, 121, 1, 0, 0, 0, 122, 123, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 30, 0, 0, 125, 126, 3, 20, 10, 0, 126, 7, 1, 0, 0, 0, 127, 129, 5, 7, 0, 0, 128, 127, 1, 0, 0, 0, 128, 129, 1, 0, 0, 0, 129, 130, 1, 0, 0, 0, 130, 131, 3, 86, 43, 0, 131, 132, 5, 48, 0, 0, 132, 133, 5, 33, 0, 0, 133, 9, 1, 0, 0, 0, 134, 135, 5, 8, 0, 0, 135, 151, 3, 20, 10, 0, 136, 138, 5, 7, 0, 0, 137, 136, 1, 0, 0, 0, 137, 138, 1, 0, 0, 0, 138, 141, 1, 0, 0, 0, 139, 142, 3, 86, 43, 0, 140, 142, 5, 3, 0, 0, 141, 139, 1, 0, 0, 0, 141, 140, 1, 0, 0, 0, 142, 143, 1, 0, 0, 0, 143, 144, 5, 48, 0, 0, 144, 146, 5, 29, 0, 0, 145, 147, 3, 12, 6, 0, 146, 145, 1, 0, 0, 0, 146, 147, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 149, 5, 30, 0, 0, 149, 151, 3, 20, 10, 0, 150, 134, 1, 0, 0, 0, 150, 137, 1, 0, 0, 0, 151, 11, 1, 0, 0, 0, 152, 157, 3, 14, 7, 0, 153, 154, 5, 34, 0, 0, 154, 156, 3, 14, 7, 0, 155, 153, 1, 0, 0, 0, 156, 159, 1, 0, 0, 0, 157, 155, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 13, 1, 0, 0, 0, 159, 157, 1, 0, 0, 0, 160, 161, 3, 86, 43, 0, 161, 162, 5, 48, 0, 0, 162, 15, 1, 0, 0, 0, 163, 168, 3, 46, 23, 0, 164, 165, 5, 34, 0, 0, 165, 167, 3, 46, 23, 0, 166, 164, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 166, 1, 0, 0, 0, 168, 169, 1, 0, 0, 0, 169, 172, 1, 0, 0, 0, 170, 168, 1, 0, 0, 0, 171, 163, 1, 0, 0, 0, 171, 172, 1, 0, 0, 0, 172, 17, 1, 0, 0, 0, 173, 174, 3, 22, 11, 0, 174, 175, 5, 33, 0, 0, 175, 188, 1, 0, 0, 0, 176, 177, 3, 24, 12, 0, 177, 178, 5, 33, 0, 0, 178, 188, 1, 0, 0, 0, 179, 188, 3, 20, 10, 0, 180, 188, 3, 26, 13, 0, 181, 188, 3, 28, 14, 0, 182, 188, 3, 30, 15, 0, 183, 188, 3, 32, 16, 0, 184, 185, 3, 40, 20, 0, 185, 186, 5, 33, 0, 0, 186, 188, 1, 0, 0, 0, 187, 173, 1, 0, 0, 0, 187, 176, 1, 0, 0, 0, 187, 179, 1, 0, 0, 0, 187, 180, 1, 0, 0, 0, 187, 181, 1, 0, 0, 0, 187, 182, 1, 0, 0, 0, 187, 183, 1, 0, 0, 0, 187, 184, 1, 0, 0, 0, 188, 19, 1, 0, 0, 0, 189, 193, 5, 31, 0, 0, 190, 192, 3, 18, 9, 0, 191, 190, 1, 0, 0, 0, 192, 195, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 196, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 197, 5, 32, 0, 0, 197, 21, 1, 0, 0, 0, 198, 200, 5, 42, 0, 0, 199, 201, 3, 46, 23, 0, 200, 199, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 23, 1, 0, 0, 0, 202, 203, 3, 86, 43, 0, 203, 206, 5, 48, 0, 0, 204, 205, 5, 13, 0, 0, 205, 207, 3, 46, 23, 0, 206, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 25, 1, 0, 0, 0, 208, 209, 5, 37, 0, 0, 209, 210, 5, 29, 0, 0, 210, 211, 3, 46, 23, 0, 211, 212, 5, 30, 0, 0, 212, 213, 3, 20, 10, 0, 213, 27, 1, 0, 0, 0, 214, 215, 5, 38, 0, 0, 215, 216, 3, 20, 10, 0, 216, 217, 5, 37, 0, 0, 217, 218, 5, 29, 0, 0, 218, 219, 3, 46, 23, 0, 219, 220, 5, 30, 0, 0, 220, 221, 5, 33, 0, 0, 221, 29, 1, 0, 0, 0, 222, 223, 5, 41, 0, 0, 223, 226, 5, 29, 0, 0, 224, 227, 3, 40, 20, 0, 225, 227, 3, 24, 12, 0, 226, 224, 1, 0, 0, 0, 226, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 5, 33, 0, 0, 229, 231, 3, 46, 23, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 234, 5, 33, 0, 0, 233, 235, 3, 40, 20, 0, 234, 233, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 5, 30, 0, 0, 237, 238, 3, 20, 10, 0, 238, 31, 1, 0, 0, 0, 239, 243, 3, 34, 17, 0, 240, 242, 3, 36, 18, 0, 241, 240, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 38, 19, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 33, 1, 0, 0, 0, 249, 250, 5, 39, 0, 0, 250, 251, 5, 29, 0, 0, 251, 252, 3, 46, 23, 0, 252, 253, 5, 30, 0, 0, 253, 254, 3, 20, 10, 0, 254, 35, 1, 0, 0, 0, 255, 256, 5, 40, 0, 0, 256, 257, 5, 39, 0, 0, 257, 258, 5, 29, 0, 0, 258, 259, 3, 46, 23, 0, 259, 260, 5, 30, 0, 0, 260, 261, 3, 20, 10, 0, 261, 37, 1, 0, 0, 0, 262, 263, 5, 40, 0, 0, 263, 264, 3, 20, 10, 0, 264, 39, 1, 0, 0, 0, 265, 270, 3, 42, 21, 0, 266, 270, 3, 44, 22, 0, 267, 270, 3, 80, 40, 0, 268, 270, 3, 52, 26, 0, 269, 265, 1, 0, 0, 0, 269, 266, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 268, 1, 0, 0, 0, 270, 41, 1, 0, 0, 0, 271, 272, 3, 66, 33, 0, 272, 273, 5, 13, 0, 0, 273, 274, 3, 46, 23, 0, 274, 43, 1, 0, 0, 0, 275, 276, 5, 43, 0, 0, 276, 277, 5, 48, 0, 0, 277, 278, 5, 29, 0, 0, 278, 279, 3, 16, 8, 0, 279, 280, 5, 30, 0, 0, 280, 45, 1, 0, 0, 0, 281, 284, 3, 48, 24, 0, 282, 284, 3, 70, 35, 0, 283, 281, 1, 0, 0, 0, 283, 282, 1, 0, 0, 0, 284, 47, 1, 0, 0, 0, 285, 296, 5, 36, 0, 0, 286, 296, 5, 48, 0, 0, 287, 296, 3, 68, 34, 0, 288, 296, 3, 88, 44, 0, 289, 296, 3, 50, 25, 0, 290, 296, 3, 40, 20, 0, 291, 292, 5, 29, 0, 0, 292, 293, 3, 46, 23, 0, 293, 294, 5, 30, 0, 0, 294, 296, 1, 0, 0, 0, 295, 285, 1, 0, 0, 0, 295, 286, 1, 0, 0, 0, 295, 287, 1, 0, 0, 0, 295, 288, 1, 0, 0, 0, 295, 289, 1, 0, 0, 0, 295, 290, 1, 0, 0, 0, 295, 291, 1, 0, 0, 0, 296, 49, 1, 0, 0, 0, 297, 298, 5, 25, 0, 0, 298, 299, 3, 46, 23, 0, 299, 51, 1, 0, 0, 0, 300, 303, 3, 54, 27, 0, 301, 303, 3, 60, 30, 0, 302, 300, 1, 0, 0, 0, 302, 301, 1, 0, 0, 0, 303, 53, 1, 0, 0, 0, 304, 307, 3, 56, 28, 0, 305, 307, 3, 58, 29, 0, 306, 304, 1, 0, 0, 0, 306, 305, 1, 0, 0, 0, 307, 55, 1, 0, 0, 0, 308, 309, 5, 1, 0, 0, 309, 310, 3, 66, 33, 0, 310, 57, 1, 0, 0, 0, 311, 312, 3, 66, 33, 0, 312, 313, 5, 1, 0, 0, 313, 59, 1, 0, 0, 0, 314, 317, 3, 62, 31, 0, 315, 317, 3, 64, 32, 0, 316, 314, 1, 0, 0, 0, 316, 315, 1, 0, 0, 0, 317, 61, 1, 0, 0, 0, 318, 319, 5, 2, 0, 0, 319, 320, 3, 66, 33, 0, 320, 63, 1, 0, 0, 0, 321, 322, 3, 66, 33, 0, 322, 323, 5, 2, 0, 0, 323, 65, 1, 0, 0, 0, 324, 327, 5, 48, 0, 0, 325, 327, 3, 68, 34, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 67, 1, 0, 0, 0, 328, 329, 5, 36, 0, 0, 329, 330, 5, 28, 0, 0, 330, 343, 5, 48, 0, 0, 331, 332, 5, 36, 0, 0, 332, 334, 5, 28, 0, 0, 333, 331, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 336, 5, 48, 0, 0, 336, 338, 5, 28, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 343, 5, 48, 0, 0, 342, 328, 1, 0, 0, 0, 342, 333, 1, 0, 0, 0, 343, 69, 1, 0, 0, 0, 344, 347, 3, 72, 36, 0, 345, 347, 3, 78, 39, 0, 346, 344, 1, 0, 0, 0, 346, 345, 1, 0, 0, 0, 347, 71, 1, 0, 0, 0, 348, 349, 6, 36, -1, 0, 349, 350, 3, 74, 37, 0, 350, 356, 1, 0, 0, 0, 351, 352, 10, 2, 0, 0, 352, 353, 5, 10, 0, 0, 353, 355, 3, 74, 37, 0, 354, 351, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 73, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 359, 360, 6, 37, -1, 0, 360, 361, 3, 76, 38, 0, 361, 367, 1, 0, 0, 0, 362, 363, 10, 2, 0, 0, 363, 364, 5, 9, 0, 0, 364, 366, 3, 76, 38, 0, 365, 362, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 75, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 379, 5, 45, 0, 0, 371, 379, 5, 48, 0, 0, 372, 379, 3, 68, 34, 0, 373, 374, 3, 80, 40, 0, 374, 375, 5, 29, 0, 0, 375, 376, 3, 72, 36, 0, 376, 377, 5, 30, 0, 0, 377, 379, 1, 0, 0, 0, 378, 370, 1, 0, 0, 0, 378, 371, 1, 0, 0, 0, 378, 372, 1, 0, 0, 0, 378, 373, 1, 0, 0, 0, 379, 77, 1, 0, 0, 0, 380, 381, 3, 48, 24, 0, 381, 382, 3, 90, 45, 0, 382, 383, 3, 46, 23, 0, 383, 79, 1, 0, 0, 0, 384, 386, 3, 82, 41, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 390, 1, 0, 0, 0, 387, 389, 3, 84, 42, 0, 388, 387, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 393, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 393, 394, 5, 48, 0, 0, 394, 395, 5, 29, 0, 0, 395, 396, 3, 16, 8, 0, 396, 397, 5, 30, 0, 0, 397, 81, 1, 0, 0, 0, 398, 403, 5, 36, 0, 0, 399, 403, 3, 68, 34, 0, 400, 403, 3, 44, 22, 0, 401, 403, 5, 48, 0, 0, 402, 398, 1, 0, 0, 0, 402, 399, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 402, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 405, 5, 28, 0, 0, 405, 83, 1, 0, 0, 0, 406, 407, 5, 48, 0, 0, 407, 408, 5, 29, 0, 0, 408, 409, 3, 16, 8, 0, 409, 410, 5, 30, 0, 0, 410, 411, 5, 28, 0, 0, 411, 85, 1, 0, 0, 0, 412, 413, 7, 0, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 7, 1, 0, 0, 415, 89, 1, 0, 0, 0, 416, 417, 7, 2, 0, 0, 417, 91, 1, 0, 0, 0, 40, 95, 98, 106, 114, 117, 122, 128, 137, 141, 146, 150, 157, 168, 171, 187, 193, 200, 206, 226, 230, 234, 243, 247, 269, 283, 295, 302, 306, 316, 326, 333, 339, 342, 346, 356, 367, 378, 385, 390, 402] \ No newline at end of file +[4, 1, 50, 396, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 1, 0, 4, 0, 90, 8, 0, 11, 0, 12, 0, 91, 1, 1, 3, 1, 95, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 101, 8, 1, 10, 1, 12, 1, 104, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 111, 8, 2, 1, 3, 3, 3, 114, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 119, 8, 3, 1, 3, 1, 3, 1, 3, 1, 4, 3, 4, 125, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 3, 5, 134, 8, 5, 1, 5, 1, 5, 3, 5, 138, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 143, 8, 5, 1, 5, 1, 5, 3, 5, 147, 8, 5, 1, 6, 1, 6, 1, 6, 5, 6, 152, 8, 6, 10, 6, 12, 6, 155, 9, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 163, 8, 8, 10, 8, 12, 8, 166, 9, 8, 3, 8, 168, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 183, 8, 9, 1, 10, 1, 10, 5, 10, 187, 8, 10, 10, 10, 12, 10, 190, 9, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 196, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 202, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 214, 8, 14, 1, 14, 1, 14, 3, 14, 218, 8, 14, 1, 14, 1, 14, 3, 14, 222, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 5, 15, 229, 8, 15, 10, 15, 12, 15, 232, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 247, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 261, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 273, 8, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 280, 8, 24, 1, 25, 1, 25, 3, 25, 284, 8, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 294, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 304, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 311, 8, 32, 1, 32, 1, 32, 4, 32, 315, 8, 32, 11, 32, 12, 32, 316, 1, 32, 3, 32, 320, 8, 32, 1, 33, 1, 33, 3, 33, 324, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 332, 8, 34, 10, 34, 12, 34, 335, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 343, 8, 35, 10, 35, 12, 35, 346, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 356, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 3, 38, 363, 8, 38, 1, 38, 5, 38, 366, 8, 38, 10, 38, 12, 38, 369, 9, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 380, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 0, 2, 68, 70, 44, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 0, 3, 2, 0, 4, 6, 47, 47, 1, 0, 43, 46, 1, 0, 11, 12, 407, 0, 89, 1, 0, 0, 0, 2, 94, 1, 0, 0, 0, 4, 110, 1, 0, 0, 0, 6, 113, 1, 0, 0, 0, 8, 124, 1, 0, 0, 0, 10, 146, 1, 0, 0, 0, 12, 148, 1, 0, 0, 0, 14, 156, 1, 0, 0, 0, 16, 167, 1, 0, 0, 0, 18, 182, 1, 0, 0, 0, 20, 184, 1, 0, 0, 0, 22, 193, 1, 0, 0, 0, 24, 197, 1, 0, 0, 0, 26, 203, 1, 0, 0, 0, 28, 209, 1, 0, 0, 0, 30, 226, 1, 0, 0, 0, 32, 233, 1, 0, 0, 0, 34, 239, 1, 0, 0, 0, 36, 246, 1, 0, 0, 0, 38, 248, 1, 0, 0, 0, 40, 252, 1, 0, 0, 0, 42, 260, 1, 0, 0, 0, 44, 272, 1, 0, 0, 0, 46, 274, 1, 0, 0, 0, 48, 279, 1, 0, 0, 0, 50, 283, 1, 0, 0, 0, 52, 285, 1, 0, 0, 0, 54, 288, 1, 0, 0, 0, 56, 293, 1, 0, 0, 0, 58, 295, 1, 0, 0, 0, 60, 298, 1, 0, 0, 0, 62, 303, 1, 0, 0, 0, 64, 319, 1, 0, 0, 0, 66, 323, 1, 0, 0, 0, 68, 325, 1, 0, 0, 0, 70, 336, 1, 0, 0, 0, 72, 355, 1, 0, 0, 0, 74, 357, 1, 0, 0, 0, 76, 362, 1, 0, 0, 0, 78, 379, 1, 0, 0, 0, 80, 383, 1, 0, 0, 0, 82, 389, 1, 0, 0, 0, 84, 391, 1, 0, 0, 0, 86, 393, 1, 0, 0, 0, 88, 90, 3, 2, 1, 0, 89, 88, 1, 0, 0, 0, 90, 91, 1, 0, 0, 0, 91, 89, 1, 0, 0, 0, 91, 92, 1, 0, 0, 0, 92, 1, 1, 0, 0, 0, 93, 95, 5, 7, 0, 0, 94, 93, 1, 0, 0, 0, 94, 95, 1, 0, 0, 0, 95, 96, 1, 0, 0, 0, 96, 97, 5, 35, 0, 0, 97, 98, 5, 47, 0, 0, 98, 102, 5, 31, 0, 0, 99, 101, 3, 4, 2, 0, 100, 99, 1, 0, 0, 0, 101, 104, 1, 0, 0, 0, 102, 100, 1, 0, 0, 0, 102, 103, 1, 0, 0, 0, 103, 105, 1, 0, 0, 0, 104, 102, 1, 0, 0, 0, 105, 106, 5, 32, 0, 0, 106, 3, 1, 0, 0, 0, 107, 111, 3, 6, 3, 0, 108, 111, 3, 8, 4, 0, 109, 111, 3, 10, 5, 0, 110, 107, 1, 0, 0, 0, 110, 108, 1, 0, 0, 0, 110, 109, 1, 0, 0, 0, 111, 5, 1, 0, 0, 0, 112, 114, 5, 7, 0, 0, 113, 112, 1, 0, 0, 0, 113, 114, 1, 0, 0, 0, 114, 115, 1, 0, 0, 0, 115, 116, 5, 47, 0, 0, 116, 118, 5, 29, 0, 0, 117, 119, 3, 12, 6, 0, 118, 117, 1, 0, 0, 0, 118, 119, 1, 0, 0, 0, 119, 120, 1, 0, 0, 0, 120, 121, 5, 30, 0, 0, 121, 122, 3, 20, 10, 0, 122, 7, 1, 0, 0, 0, 123, 125, 5, 7, 0, 0, 124, 123, 1, 0, 0, 0, 124, 125, 1, 0, 0, 0, 125, 126, 1, 0, 0, 0, 126, 127, 3, 82, 41, 0, 127, 128, 5, 47, 0, 0, 128, 129, 5, 33, 0, 0, 129, 9, 1, 0, 0, 0, 130, 131, 5, 8, 0, 0, 131, 147, 3, 20, 10, 0, 132, 134, 5, 7, 0, 0, 133, 132, 1, 0, 0, 0, 133, 134, 1, 0, 0, 0, 134, 137, 1, 0, 0, 0, 135, 138, 3, 82, 41, 0, 136, 138, 5, 3, 0, 0, 137, 135, 1, 0, 0, 0, 137, 136, 1, 0, 0, 0, 138, 139, 1, 0, 0, 0, 139, 140, 5, 47, 0, 0, 140, 142, 5, 29, 0, 0, 141, 143, 3, 12, 6, 0, 142, 141, 1, 0, 0, 0, 142, 143, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 5, 30, 0, 0, 145, 147, 3, 20, 10, 0, 146, 130, 1, 0, 0, 0, 146, 133, 1, 0, 0, 0, 147, 11, 1, 0, 0, 0, 148, 153, 3, 14, 7, 0, 149, 150, 5, 34, 0, 0, 150, 152, 3, 14, 7, 0, 151, 149, 1, 0, 0, 0, 152, 155, 1, 0, 0, 0, 153, 151, 1, 0, 0, 0, 153, 154, 1, 0, 0, 0, 154, 13, 1, 0, 0, 0, 155, 153, 1, 0, 0, 0, 156, 157, 3, 82, 41, 0, 157, 158, 5, 47, 0, 0, 158, 15, 1, 0, 0, 0, 159, 164, 3, 42, 21, 0, 160, 161, 5, 34, 0, 0, 161, 163, 3, 42, 21, 0, 162, 160, 1, 0, 0, 0, 163, 166, 1, 0, 0, 0, 164, 162, 1, 0, 0, 0, 164, 165, 1, 0, 0, 0, 165, 168, 1, 0, 0, 0, 166, 164, 1, 0, 0, 0, 167, 159, 1, 0, 0, 0, 167, 168, 1, 0, 0, 0, 168, 17, 1, 0, 0, 0, 169, 170, 3, 22, 11, 0, 170, 171, 5, 33, 0, 0, 171, 183, 1, 0, 0, 0, 172, 173, 3, 24, 12, 0, 173, 174, 5, 33, 0, 0, 174, 183, 1, 0, 0, 0, 175, 183, 3, 20, 10, 0, 176, 183, 3, 26, 13, 0, 177, 183, 3, 28, 14, 0, 178, 183, 3, 30, 15, 0, 179, 180, 3, 36, 18, 0, 180, 181, 5, 33, 0, 0, 181, 183, 1, 0, 0, 0, 182, 169, 1, 0, 0, 0, 182, 172, 1, 0, 0, 0, 182, 175, 1, 0, 0, 0, 182, 176, 1, 0, 0, 0, 182, 177, 1, 0, 0, 0, 182, 178, 1, 0, 0, 0, 182, 179, 1, 0, 0, 0, 183, 19, 1, 0, 0, 0, 184, 188, 5, 31, 0, 0, 185, 187, 3, 18, 9, 0, 186, 185, 1, 0, 0, 0, 187, 190, 1, 0, 0, 0, 188, 186, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 191, 1, 0, 0, 0, 190, 188, 1, 0, 0, 0, 191, 192, 5, 32, 0, 0, 192, 21, 1, 0, 0, 0, 193, 195, 5, 41, 0, 0, 194, 196, 3, 42, 21, 0, 195, 194, 1, 0, 0, 0, 195, 196, 1, 0, 0, 0, 196, 23, 1, 0, 0, 0, 197, 198, 3, 82, 41, 0, 198, 201, 5, 47, 0, 0, 199, 200, 5, 13, 0, 0, 200, 202, 3, 42, 21, 0, 201, 199, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0, 202, 25, 1, 0, 0, 0, 203, 204, 5, 37, 0, 0, 204, 205, 5, 29, 0, 0, 205, 206, 3, 42, 21, 0, 206, 207, 5, 30, 0, 0, 207, 208, 3, 20, 10, 0, 208, 27, 1, 0, 0, 0, 209, 210, 5, 40, 0, 0, 210, 213, 5, 29, 0, 0, 211, 214, 3, 36, 18, 0, 212, 214, 3, 24, 12, 0, 213, 211, 1, 0, 0, 0, 213, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 217, 5, 33, 0, 0, 216, 218, 3, 42, 21, 0, 217, 216, 1, 0, 0, 0, 217, 218, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 221, 5, 33, 0, 0, 220, 222, 3, 36, 18, 0, 221, 220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 5, 30, 0, 0, 224, 225, 3, 20, 10, 0, 225, 29, 1, 0, 0, 0, 226, 230, 3, 32, 16, 0, 227, 229, 3, 34, 17, 0, 228, 227, 1, 0, 0, 0, 229, 232, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 31, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 233, 234, 5, 38, 0, 0, 234, 235, 5, 29, 0, 0, 235, 236, 3, 42, 21, 0, 236, 237, 5, 30, 0, 0, 237, 238, 3, 20, 10, 0, 238, 33, 1, 0, 0, 0, 239, 240, 5, 39, 0, 0, 240, 241, 3, 20, 10, 0, 241, 35, 1, 0, 0, 0, 242, 247, 3, 38, 19, 0, 243, 247, 3, 40, 20, 0, 244, 247, 3, 76, 38, 0, 245, 247, 3, 48, 24, 0, 246, 242, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 245, 1, 0, 0, 0, 247, 37, 1, 0, 0, 0, 248, 249, 3, 62, 31, 0, 249, 250, 5, 13, 0, 0, 250, 251, 3, 42, 21, 0, 251, 39, 1, 0, 0, 0, 252, 253, 5, 42, 0, 0, 253, 254, 5, 47, 0, 0, 254, 255, 5, 29, 0, 0, 255, 256, 3, 16, 8, 0, 256, 257, 5, 30, 0, 0, 257, 41, 1, 0, 0, 0, 258, 261, 3, 44, 22, 0, 259, 261, 3, 66, 33, 0, 260, 258, 1, 0, 0, 0, 260, 259, 1, 0, 0, 0, 261, 43, 1, 0, 0, 0, 262, 273, 5, 36, 0, 0, 263, 273, 5, 47, 0, 0, 264, 273, 3, 64, 32, 0, 265, 273, 3, 84, 42, 0, 266, 273, 3, 46, 23, 0, 267, 273, 3, 36, 18, 0, 268, 269, 5, 29, 0, 0, 269, 270, 3, 42, 21, 0, 270, 271, 5, 30, 0, 0, 271, 273, 1, 0, 0, 0, 272, 262, 1, 0, 0, 0, 272, 263, 1, 0, 0, 0, 272, 264, 1, 0, 0, 0, 272, 265, 1, 0, 0, 0, 272, 266, 1, 0, 0, 0, 272, 267, 1, 0, 0, 0, 272, 268, 1, 0, 0, 0, 273, 45, 1, 0, 0, 0, 274, 275, 5, 25, 0, 0, 275, 276, 3, 42, 21, 0, 276, 47, 1, 0, 0, 0, 277, 280, 3, 50, 25, 0, 278, 280, 3, 56, 28, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 280, 49, 1, 0, 0, 0, 281, 284, 3, 52, 26, 0, 282, 284, 3, 54, 27, 0, 283, 281, 1, 0, 0, 0, 283, 282, 1, 0, 0, 0, 284, 51, 1, 0, 0, 0, 285, 286, 5, 1, 0, 0, 286, 287, 3, 62, 31, 0, 287, 53, 1, 0, 0, 0, 288, 289, 3, 62, 31, 0, 289, 290, 5, 1, 0, 0, 290, 55, 1, 0, 0, 0, 291, 294, 3, 58, 29, 0, 292, 294, 3, 60, 30, 0, 293, 291, 1, 0, 0, 0, 293, 292, 1, 0, 0, 0, 294, 57, 1, 0, 0, 0, 295, 296, 5, 2, 0, 0, 296, 297, 3, 62, 31, 0, 297, 59, 1, 0, 0, 0, 298, 299, 3, 62, 31, 0, 299, 300, 5, 2, 0, 0, 300, 61, 1, 0, 0, 0, 301, 304, 5, 47, 0, 0, 302, 304, 3, 64, 32, 0, 303, 301, 1, 0, 0, 0, 303, 302, 1, 0, 0, 0, 304, 63, 1, 0, 0, 0, 305, 306, 5, 36, 0, 0, 306, 307, 5, 28, 0, 0, 307, 320, 5, 47, 0, 0, 308, 309, 5, 36, 0, 0, 309, 311, 5, 28, 0, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 313, 5, 47, 0, 0, 313, 315, 5, 28, 0, 0, 314, 312, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 320, 5, 47, 0, 0, 319, 305, 1, 0, 0, 0, 319, 310, 1, 0, 0, 0, 320, 65, 1, 0, 0, 0, 321, 324, 3, 68, 34, 0, 322, 324, 3, 74, 37, 0, 323, 321, 1, 0, 0, 0, 323, 322, 1, 0, 0, 0, 324, 67, 1, 0, 0, 0, 325, 326, 6, 34, -1, 0, 326, 327, 3, 70, 35, 0, 327, 333, 1, 0, 0, 0, 328, 329, 10, 2, 0, 0, 329, 330, 5, 10, 0, 0, 330, 332, 3, 70, 35, 0, 331, 328, 1, 0, 0, 0, 332, 335, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 69, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 336, 337, 6, 35, -1, 0, 337, 338, 3, 72, 36, 0, 338, 344, 1, 0, 0, 0, 339, 340, 10, 2, 0, 0, 340, 341, 5, 9, 0, 0, 341, 343, 3, 72, 36, 0, 342, 339, 1, 0, 0, 0, 343, 346, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 71, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 356, 5, 44, 0, 0, 348, 356, 5, 47, 0, 0, 349, 356, 3, 64, 32, 0, 350, 351, 3, 76, 38, 0, 351, 352, 5, 29, 0, 0, 352, 353, 3, 68, 34, 0, 353, 354, 5, 30, 0, 0, 354, 356, 1, 0, 0, 0, 355, 347, 1, 0, 0, 0, 355, 348, 1, 0, 0, 0, 355, 349, 1, 0, 0, 0, 355, 350, 1, 0, 0, 0, 356, 73, 1, 0, 0, 0, 357, 358, 3, 44, 22, 0, 358, 359, 3, 86, 43, 0, 359, 360, 3, 42, 21, 0, 360, 75, 1, 0, 0, 0, 361, 363, 3, 78, 39, 0, 362, 361, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 367, 1, 0, 0, 0, 364, 366, 3, 80, 40, 0, 365, 364, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 371, 5, 47, 0, 0, 371, 372, 5, 29, 0, 0, 372, 373, 3, 16, 8, 0, 373, 374, 5, 30, 0, 0, 374, 77, 1, 0, 0, 0, 375, 380, 5, 36, 0, 0, 376, 380, 3, 64, 32, 0, 377, 380, 3, 40, 20, 0, 378, 380, 5, 47, 0, 0, 379, 375, 1, 0, 0, 0, 379, 376, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 5, 28, 0, 0, 382, 79, 1, 0, 0, 0, 383, 384, 5, 47, 0, 0, 384, 385, 5, 29, 0, 0, 385, 386, 3, 16, 8, 0, 386, 387, 5, 30, 0, 0, 387, 388, 5, 28, 0, 0, 388, 81, 1, 0, 0, 0, 389, 390, 7, 0, 0, 0, 390, 83, 1, 0, 0, 0, 391, 392, 7, 1, 0, 0, 392, 85, 1, 0, 0, 0, 393, 394, 7, 2, 0, 0, 394, 87, 1, 0, 0, 0, 39, 91, 94, 102, 110, 113, 118, 124, 133, 137, 142, 146, 153, 164, 167, 182, 188, 195, 201, 213, 217, 221, 230, 246, 260, 272, 279, 283, 293, 303, 310, 316, 319, 323, 333, 344, 355, 362, 367, 379] \ No newline at end of file diff --git a/src/main/java/parser/generated/SimpleJava.tokens b/src/main/java/parser/generated/SimpleJava.tokens index 71246c8..bed7437 100644 --- a/src/main/java/parser/generated/SimpleJava.tokens +++ b/src/main/java/parser/generated/SimpleJava.tokens @@ -35,20 +35,19 @@ Comma=34 Class=35 This=36 While=37 -Do=38 -If=39 -Else=40 -For=41 -Return=42 -New=43 -CharValue=44 -IntValue=45 -BooleanValue=46 -NullValue=47 -Identifier=48 -WS=49 -InlineComment=50 -MultilineComment=51 +If=38 +Else=39 +For=40 +Return=41 +New=42 +CharValue=43 +IntValue=44 +BooleanValue=45 +NullValue=46 +Identifier=47 +WS=48 +InlineComment=49 +MultilineComment=50 '++'=1 '--'=2 'void'=3 @@ -81,10 +80,9 @@ MultilineComment=51 'class'=35 'this'=36 'while'=37 -'do'=38 -'if'=39 -'else'=40 -'for'=41 -'return'=42 -'new'=43 -'null'=47 +'if'=38 +'else'=39 +'for'=40 +'return'=41 +'new'=42 +'null'=46 diff --git a/src/main/java/parser/generated/SimpleJavaBaseListener.java b/src/main/java/parser/generated/SimpleJavaBaseListener.java index eecc12f..2bf9ddd 100644 --- a/src/main/java/parser/generated/SimpleJavaBaseListener.java +++ b/src/main/java/parser/generated/SimpleJavaBaseListener.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.ParserRuleContext; @@ -137,13 +137,13 @@ public class SimpleJavaBaseListener implements SimpleJavaListener { * *

The default implementation does nothing.

*/ - @Override public void enterBlockStatement(SimpleJavaParser.BlockStatementContext ctx) { } + @Override public void enterBlock(SimpleJavaParser.BlockContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitBlockStatement(SimpleJavaParser.BlockStatementContext ctx) { } + @Override public void exitBlock(SimpleJavaParser.BlockContext ctx) { } /** * {@inheritDoc} * @@ -180,18 +180,6 @@ public class SimpleJavaBaseListener implements SimpleJavaListener { *

The default implementation does nothing.

*/ @Override public void exitWhileStatement(SimpleJavaParser.WhileStatementContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx) { } /** * {@inheritDoc} * @@ -228,18 +216,6 @@ public class SimpleJavaBaseListener implements SimpleJavaListener { *

The default implementation does nothing.

*/ @Override public void exitIfStatement(SimpleJavaParser.IfStatementContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/parser/generated/SimpleJavaBaseVisitor.java b/src/main/java/parser/generated/SimpleJavaBaseVisitor.java index b3a6029..92fb64c 100644 --- a/src/main/java/parser/generated/SimpleJavaBaseVisitor.java +++ b/src/main/java/parser/generated/SimpleJavaBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; @@ -88,7 +88,7 @@ public class SimpleJavaBaseVisitor extends AbstractParseTreeVisitor implem *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitBlockStatement(SimpleJavaParser.BlockStatementContext ctx) { return visitChildren(ctx); } + @Override public T visitBlock(SimpleJavaParser.BlockContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -110,13 +110,6 @@ public class SimpleJavaBaseVisitor extends AbstractParseTreeVisitor implem * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitWhileStatement(SimpleJavaParser.WhileStatementContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -138,13 +131,6 @@ public class SimpleJavaBaseVisitor extends AbstractParseTreeVisitor implem * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIfStatement(SimpleJavaParser.IfStatementContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/parser/generated/SimpleJavaLexer.interp b/src/main/java/parser/generated/SimpleJavaLexer.interp index 61f0ce5..919e1fd 100644 --- a/src/main/java/parser/generated/SimpleJavaLexer.interp +++ b/src/main/java/parser/generated/SimpleJavaLexer.interp @@ -37,7 +37,6 @@ null 'class' 'this' 'while' -'do' 'if' 'else' 'for' @@ -91,7 +90,6 @@ Comma Class This While -Do If Else For @@ -144,7 +142,6 @@ Comma Class This While -Do If Else For @@ -170,4 +167,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 51, 413, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 178, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 3, 8, 222, 8, 8, 1, 9, 1, 9, 3, 9, 226, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 234, 8, 10, 1, 11, 1, 11, 3, 11, 238, 8, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 5, 43, 335, 8, 43, 10, 43, 12, 43, 338, 9, 43, 1, 43, 1, 43, 1, 44, 3, 44, 343, 8, 44, 1, 44, 4, 44, 346, 8, 44, 11, 44, 12, 44, 347, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 359, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 3, 49, 373, 8, 49, 1, 50, 1, 50, 5, 50, 377, 8, 50, 10, 50, 12, 50, 380, 9, 50, 1, 51, 4, 51, 383, 8, 51, 11, 51, 12, 51, 384, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 393, 8, 52, 10, 52, 12, 52, 396, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 404, 8, 53, 10, 53, 12, 53, 407, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 405, 0, 54, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 0, 97, 0, 99, 0, 101, 48, 103, 49, 105, 50, 107, 51, 1, 0, 5, 2, 0, 10, 10, 13, 13, 2, 0, 65, 90, 97, 122, 1, 0, 48, 57, 2, 0, 36, 36, 95, 95, 3, 0, 9, 10, 13, 13, 32, 32, 431, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 3, 112, 1, 0, 0, 0, 5, 115, 1, 0, 0, 0, 7, 120, 1, 0, 0, 0, 9, 128, 1, 0, 0, 0, 11, 133, 1, 0, 0, 0, 13, 177, 1, 0, 0, 0, 15, 179, 1, 0, 0, 0, 17, 221, 1, 0, 0, 0, 19, 225, 1, 0, 0, 0, 21, 233, 1, 0, 0, 0, 23, 237, 1, 0, 0, 0, 25, 239, 1, 0, 0, 0, 27, 241, 1, 0, 0, 0, 29, 243, 1, 0, 0, 0, 31, 245, 1, 0, 0, 0, 33, 247, 1, 0, 0, 0, 35, 249, 1, 0, 0, 0, 37, 251, 1, 0, 0, 0, 39, 253, 1, 0, 0, 0, 41, 255, 1, 0, 0, 0, 43, 258, 1, 0, 0, 0, 45, 261, 1, 0, 0, 0, 47, 264, 1, 0, 0, 0, 49, 267, 1, 0, 0, 0, 51, 269, 1, 0, 0, 0, 53, 272, 1, 0, 0, 0, 55, 275, 1, 0, 0, 0, 57, 277, 1, 0, 0, 0, 59, 279, 1, 0, 0, 0, 61, 281, 1, 0, 0, 0, 63, 283, 1, 0, 0, 0, 65, 285, 1, 0, 0, 0, 67, 287, 1, 0, 0, 0, 69, 289, 1, 0, 0, 0, 71, 295, 1, 0, 0, 0, 73, 300, 1, 0, 0, 0, 75, 306, 1, 0, 0, 0, 77, 309, 1, 0, 0, 0, 79, 312, 1, 0, 0, 0, 81, 317, 1, 0, 0, 0, 83, 321, 1, 0, 0, 0, 85, 328, 1, 0, 0, 0, 87, 332, 1, 0, 0, 0, 89, 342, 1, 0, 0, 0, 91, 358, 1, 0, 0, 0, 93, 360, 1, 0, 0, 0, 95, 365, 1, 0, 0, 0, 97, 367, 1, 0, 0, 0, 99, 372, 1, 0, 0, 0, 101, 374, 1, 0, 0, 0, 103, 382, 1, 0, 0, 0, 105, 388, 1, 0, 0, 0, 107, 399, 1, 0, 0, 0, 109, 110, 5, 43, 0, 0, 110, 111, 5, 43, 0, 0, 111, 2, 1, 0, 0, 0, 112, 113, 5, 45, 0, 0, 113, 114, 5, 45, 0, 0, 114, 4, 1, 0, 0, 0, 115, 116, 5, 118, 0, 0, 116, 117, 5, 111, 0, 0, 117, 118, 5, 105, 0, 0, 118, 119, 5, 100, 0, 0, 119, 6, 1, 0, 0, 0, 120, 121, 5, 98, 0, 0, 121, 122, 5, 111, 0, 0, 122, 123, 5, 111, 0, 0, 123, 124, 5, 108, 0, 0, 124, 125, 5, 101, 0, 0, 125, 126, 5, 97, 0, 0, 126, 127, 5, 110, 0, 0, 127, 8, 1, 0, 0, 0, 128, 129, 5, 99, 0, 0, 129, 130, 5, 104, 0, 0, 130, 131, 5, 97, 0, 0, 131, 132, 5, 114, 0, 0, 132, 10, 1, 0, 0, 0, 133, 134, 5, 105, 0, 0, 134, 135, 5, 110, 0, 0, 135, 136, 5, 116, 0, 0, 136, 12, 1, 0, 0, 0, 137, 138, 5, 112, 0, 0, 138, 139, 5, 117, 0, 0, 139, 140, 5, 98, 0, 0, 140, 141, 5, 108, 0, 0, 141, 142, 5, 105, 0, 0, 142, 178, 5, 99, 0, 0, 143, 144, 5, 112, 0, 0, 144, 145, 5, 114, 0, 0, 145, 146, 5, 105, 0, 0, 146, 147, 5, 118, 0, 0, 147, 148, 5, 97, 0, 0, 148, 149, 5, 116, 0, 0, 149, 178, 5, 101, 0, 0, 150, 151, 5, 112, 0, 0, 151, 152, 5, 117, 0, 0, 152, 153, 5, 98, 0, 0, 153, 154, 5, 108, 0, 0, 154, 155, 5, 105, 0, 0, 155, 156, 5, 99, 0, 0, 156, 157, 5, 32, 0, 0, 157, 158, 5, 115, 0, 0, 158, 159, 5, 116, 0, 0, 159, 160, 5, 97, 0, 0, 160, 161, 5, 116, 0, 0, 161, 162, 5, 105, 0, 0, 162, 178, 5, 99, 0, 0, 163, 164, 5, 112, 0, 0, 164, 165, 5, 114, 0, 0, 165, 166, 5, 105, 0, 0, 166, 167, 5, 118, 0, 0, 167, 168, 5, 97, 0, 0, 168, 169, 5, 116, 0, 0, 169, 170, 5, 101, 0, 0, 170, 171, 5, 32, 0, 0, 171, 172, 5, 115, 0, 0, 172, 173, 5, 116, 0, 0, 173, 174, 5, 97, 0, 0, 174, 175, 5, 116, 0, 0, 175, 176, 5, 105, 0, 0, 176, 178, 5, 99, 0, 0, 177, 137, 1, 0, 0, 0, 177, 143, 1, 0, 0, 0, 177, 150, 1, 0, 0, 0, 177, 163, 1, 0, 0, 0, 178, 14, 1, 0, 0, 0, 179, 180, 5, 112, 0, 0, 180, 181, 5, 117, 0, 0, 181, 182, 5, 98, 0, 0, 182, 183, 5, 108, 0, 0, 183, 184, 5, 105, 0, 0, 184, 185, 5, 99, 0, 0, 185, 186, 5, 32, 0, 0, 186, 187, 5, 115, 0, 0, 187, 188, 5, 116, 0, 0, 188, 189, 5, 97, 0, 0, 189, 190, 5, 116, 0, 0, 190, 191, 5, 105, 0, 0, 191, 192, 5, 99, 0, 0, 192, 193, 5, 32, 0, 0, 193, 194, 5, 118, 0, 0, 194, 195, 5, 111, 0, 0, 195, 196, 5, 105, 0, 0, 196, 197, 5, 100, 0, 0, 197, 198, 5, 32, 0, 0, 198, 199, 5, 109, 0, 0, 199, 200, 5, 97, 0, 0, 200, 201, 5, 105, 0, 0, 201, 202, 5, 110, 0, 0, 202, 203, 5, 40, 0, 0, 203, 204, 5, 83, 0, 0, 204, 205, 5, 116, 0, 0, 205, 206, 5, 114, 0, 0, 206, 207, 5, 105, 0, 0, 207, 208, 5, 110, 0, 0, 208, 209, 5, 103, 0, 0, 209, 210, 5, 91, 0, 0, 210, 211, 5, 93, 0, 0, 211, 212, 5, 32, 0, 0, 212, 213, 5, 97, 0, 0, 213, 214, 5, 114, 0, 0, 214, 215, 5, 103, 0, 0, 215, 216, 5, 115, 0, 0, 216, 217, 5, 41, 0, 0, 217, 16, 1, 0, 0, 0, 218, 222, 3, 31, 15, 0, 219, 222, 3, 35, 17, 0, 220, 222, 3, 33, 16, 0, 221, 218, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 221, 220, 1, 0, 0, 0, 222, 18, 1, 0, 0, 0, 223, 226, 3, 27, 13, 0, 224, 226, 3, 29, 14, 0, 225, 223, 1, 0, 0, 0, 225, 224, 1, 0, 0, 0, 226, 20, 1, 0, 0, 0, 227, 234, 3, 37, 18, 0, 228, 234, 3, 39, 19, 0, 229, 234, 3, 41, 20, 0, 230, 234, 3, 43, 21, 0, 231, 234, 3, 45, 22, 0, 232, 234, 3, 47, 23, 0, 233, 227, 1, 0, 0, 0, 233, 228, 1, 0, 0, 0, 233, 229, 1, 0, 0, 0, 233, 230, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 22, 1, 0, 0, 0, 235, 238, 3, 51, 25, 0, 236, 238, 3, 53, 26, 0, 237, 235, 1, 0, 0, 0, 237, 236, 1, 0, 0, 0, 238, 24, 1, 0, 0, 0, 239, 240, 5, 61, 0, 0, 240, 26, 1, 0, 0, 0, 241, 242, 5, 43, 0, 0, 242, 28, 1, 0, 0, 0, 243, 244, 5, 45, 0, 0, 244, 30, 1, 0, 0, 0, 245, 246, 5, 42, 0, 0, 246, 32, 1, 0, 0, 0, 247, 248, 5, 37, 0, 0, 248, 34, 1, 0, 0, 0, 249, 250, 5, 47, 0, 0, 250, 36, 1, 0, 0, 0, 251, 252, 5, 62, 0, 0, 252, 38, 1, 0, 0, 0, 253, 254, 5, 60, 0, 0, 254, 40, 1, 0, 0, 0, 255, 256, 5, 62, 0, 0, 256, 257, 5, 61, 0, 0, 257, 42, 1, 0, 0, 0, 258, 259, 5, 60, 0, 0, 259, 260, 5, 61, 0, 0, 260, 44, 1, 0, 0, 0, 261, 262, 5, 61, 0, 0, 262, 263, 5, 61, 0, 0, 263, 46, 1, 0, 0, 0, 264, 265, 5, 33, 0, 0, 265, 266, 5, 61, 0, 0, 266, 48, 1, 0, 0, 0, 267, 268, 5, 33, 0, 0, 268, 50, 1, 0, 0, 0, 269, 270, 5, 38, 0, 0, 270, 271, 5, 38, 0, 0, 271, 52, 1, 0, 0, 0, 272, 273, 5, 124, 0, 0, 273, 274, 5, 124, 0, 0, 274, 54, 1, 0, 0, 0, 275, 276, 5, 46, 0, 0, 276, 56, 1, 0, 0, 0, 277, 278, 5, 40, 0, 0, 278, 58, 1, 0, 0, 0, 279, 280, 5, 41, 0, 0, 280, 60, 1, 0, 0, 0, 281, 282, 5, 123, 0, 0, 282, 62, 1, 0, 0, 0, 283, 284, 5, 125, 0, 0, 284, 64, 1, 0, 0, 0, 285, 286, 5, 59, 0, 0, 286, 66, 1, 0, 0, 0, 287, 288, 5, 44, 0, 0, 288, 68, 1, 0, 0, 0, 289, 290, 5, 99, 0, 0, 290, 291, 5, 108, 0, 0, 291, 292, 5, 97, 0, 0, 292, 293, 5, 115, 0, 0, 293, 294, 5, 115, 0, 0, 294, 70, 1, 0, 0, 0, 295, 296, 5, 116, 0, 0, 296, 297, 5, 104, 0, 0, 297, 298, 5, 105, 0, 0, 298, 299, 5, 115, 0, 0, 299, 72, 1, 0, 0, 0, 300, 301, 5, 119, 0, 0, 301, 302, 5, 104, 0, 0, 302, 303, 5, 105, 0, 0, 303, 304, 5, 108, 0, 0, 304, 305, 5, 101, 0, 0, 305, 74, 1, 0, 0, 0, 306, 307, 5, 100, 0, 0, 307, 308, 5, 111, 0, 0, 308, 76, 1, 0, 0, 0, 309, 310, 5, 105, 0, 0, 310, 311, 5, 102, 0, 0, 311, 78, 1, 0, 0, 0, 312, 313, 5, 101, 0, 0, 313, 314, 5, 108, 0, 0, 314, 315, 5, 115, 0, 0, 315, 316, 5, 101, 0, 0, 316, 80, 1, 0, 0, 0, 317, 318, 5, 102, 0, 0, 318, 319, 5, 111, 0, 0, 319, 320, 5, 114, 0, 0, 320, 82, 1, 0, 0, 0, 321, 322, 5, 114, 0, 0, 322, 323, 5, 101, 0, 0, 323, 324, 5, 116, 0, 0, 324, 325, 5, 117, 0, 0, 325, 326, 5, 114, 0, 0, 326, 327, 5, 110, 0, 0, 327, 84, 1, 0, 0, 0, 328, 329, 5, 110, 0, 0, 329, 330, 5, 101, 0, 0, 330, 331, 5, 119, 0, 0, 331, 86, 1, 0, 0, 0, 332, 336, 5, 39, 0, 0, 333, 335, 8, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 339, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 39, 0, 0, 340, 88, 1, 0, 0, 0, 341, 343, 3, 29, 14, 0, 342, 341, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 345, 1, 0, 0, 0, 344, 346, 3, 97, 48, 0, 345, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 90, 1, 0, 0, 0, 349, 350, 5, 116, 0, 0, 350, 351, 5, 114, 0, 0, 351, 352, 5, 117, 0, 0, 352, 359, 5, 101, 0, 0, 353, 354, 5, 102, 0, 0, 354, 355, 5, 97, 0, 0, 355, 356, 5, 108, 0, 0, 356, 357, 5, 115, 0, 0, 357, 359, 5, 101, 0, 0, 358, 349, 1, 0, 0, 0, 358, 353, 1, 0, 0, 0, 359, 92, 1, 0, 0, 0, 360, 361, 5, 110, 0, 0, 361, 362, 5, 117, 0, 0, 362, 363, 5, 108, 0, 0, 363, 364, 5, 108, 0, 0, 364, 94, 1, 0, 0, 0, 365, 366, 7, 1, 0, 0, 366, 96, 1, 0, 0, 0, 367, 368, 7, 2, 0, 0, 368, 98, 1, 0, 0, 0, 369, 373, 3, 95, 47, 0, 370, 373, 3, 97, 48, 0, 371, 373, 7, 3, 0, 0, 372, 369, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 100, 1, 0, 0, 0, 374, 378, 3, 95, 47, 0, 375, 377, 3, 99, 49, 0, 376, 375, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 102, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 383, 7, 4, 0, 0, 382, 381, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 6, 51, 0, 0, 387, 104, 1, 0, 0, 0, 388, 389, 5, 47, 0, 0, 389, 390, 5, 47, 0, 0, 390, 394, 1, 0, 0, 0, 391, 393, 8, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 397, 398, 6, 52, 0, 0, 398, 106, 1, 0, 0, 0, 399, 400, 5, 47, 0, 0, 400, 401, 5, 42, 0, 0, 401, 405, 1, 0, 0, 0, 402, 404, 9, 0, 0, 0, 403, 402, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 408, 409, 5, 42, 0, 0, 409, 410, 5, 47, 0, 0, 410, 411, 1, 0, 0, 0, 411, 412, 6, 53, 0, 0, 412, 108, 1, 0, 0, 0, 15, 0, 177, 221, 225, 233, 237, 336, 342, 347, 358, 372, 378, 384, 394, 405, 1, 6, 0, 0] \ No newline at end of file +[4, 0, 50, 408, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 176, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 3, 8, 220, 8, 8, 1, 9, 1, 9, 3, 9, 224, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 232, 8, 10, 1, 11, 1, 11, 3, 11, 236, 8, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 5, 42, 330, 8, 42, 10, 42, 12, 42, 333, 9, 42, 1, 42, 1, 42, 1, 43, 3, 43, 338, 8, 43, 1, 43, 4, 43, 341, 8, 43, 11, 43, 12, 43, 342, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 354, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 3, 48, 368, 8, 48, 1, 49, 1, 49, 5, 49, 372, 8, 49, 10, 49, 12, 49, 375, 9, 49, 1, 50, 4, 50, 378, 8, 50, 11, 50, 12, 50, 379, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 388, 8, 51, 10, 51, 12, 51, 391, 9, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 399, 8, 52, 10, 52, 12, 52, 402, 9, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 400, 0, 53, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 0, 95, 0, 97, 0, 99, 47, 101, 48, 103, 49, 105, 50, 1, 0, 5, 2, 0, 10, 10, 13, 13, 2, 0, 65, 90, 97, 122, 1, 0, 48, 57, 2, 0, 36, 36, 95, 95, 3, 0, 9, 10, 13, 13, 32, 32, 426, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 3, 110, 1, 0, 0, 0, 5, 113, 1, 0, 0, 0, 7, 118, 1, 0, 0, 0, 9, 126, 1, 0, 0, 0, 11, 131, 1, 0, 0, 0, 13, 175, 1, 0, 0, 0, 15, 177, 1, 0, 0, 0, 17, 219, 1, 0, 0, 0, 19, 223, 1, 0, 0, 0, 21, 231, 1, 0, 0, 0, 23, 235, 1, 0, 0, 0, 25, 237, 1, 0, 0, 0, 27, 239, 1, 0, 0, 0, 29, 241, 1, 0, 0, 0, 31, 243, 1, 0, 0, 0, 33, 245, 1, 0, 0, 0, 35, 247, 1, 0, 0, 0, 37, 249, 1, 0, 0, 0, 39, 251, 1, 0, 0, 0, 41, 253, 1, 0, 0, 0, 43, 256, 1, 0, 0, 0, 45, 259, 1, 0, 0, 0, 47, 262, 1, 0, 0, 0, 49, 265, 1, 0, 0, 0, 51, 267, 1, 0, 0, 0, 53, 270, 1, 0, 0, 0, 55, 273, 1, 0, 0, 0, 57, 275, 1, 0, 0, 0, 59, 277, 1, 0, 0, 0, 61, 279, 1, 0, 0, 0, 63, 281, 1, 0, 0, 0, 65, 283, 1, 0, 0, 0, 67, 285, 1, 0, 0, 0, 69, 287, 1, 0, 0, 0, 71, 293, 1, 0, 0, 0, 73, 298, 1, 0, 0, 0, 75, 304, 1, 0, 0, 0, 77, 307, 1, 0, 0, 0, 79, 312, 1, 0, 0, 0, 81, 316, 1, 0, 0, 0, 83, 323, 1, 0, 0, 0, 85, 327, 1, 0, 0, 0, 87, 337, 1, 0, 0, 0, 89, 353, 1, 0, 0, 0, 91, 355, 1, 0, 0, 0, 93, 360, 1, 0, 0, 0, 95, 362, 1, 0, 0, 0, 97, 367, 1, 0, 0, 0, 99, 369, 1, 0, 0, 0, 101, 377, 1, 0, 0, 0, 103, 383, 1, 0, 0, 0, 105, 394, 1, 0, 0, 0, 107, 108, 5, 43, 0, 0, 108, 109, 5, 43, 0, 0, 109, 2, 1, 0, 0, 0, 110, 111, 5, 45, 0, 0, 111, 112, 5, 45, 0, 0, 112, 4, 1, 0, 0, 0, 113, 114, 5, 118, 0, 0, 114, 115, 5, 111, 0, 0, 115, 116, 5, 105, 0, 0, 116, 117, 5, 100, 0, 0, 117, 6, 1, 0, 0, 0, 118, 119, 5, 98, 0, 0, 119, 120, 5, 111, 0, 0, 120, 121, 5, 111, 0, 0, 121, 122, 5, 108, 0, 0, 122, 123, 5, 101, 0, 0, 123, 124, 5, 97, 0, 0, 124, 125, 5, 110, 0, 0, 125, 8, 1, 0, 0, 0, 126, 127, 5, 99, 0, 0, 127, 128, 5, 104, 0, 0, 128, 129, 5, 97, 0, 0, 129, 130, 5, 114, 0, 0, 130, 10, 1, 0, 0, 0, 131, 132, 5, 105, 0, 0, 132, 133, 5, 110, 0, 0, 133, 134, 5, 116, 0, 0, 134, 12, 1, 0, 0, 0, 135, 136, 5, 112, 0, 0, 136, 137, 5, 117, 0, 0, 137, 138, 5, 98, 0, 0, 138, 139, 5, 108, 0, 0, 139, 140, 5, 105, 0, 0, 140, 176, 5, 99, 0, 0, 141, 142, 5, 112, 0, 0, 142, 143, 5, 114, 0, 0, 143, 144, 5, 105, 0, 0, 144, 145, 5, 118, 0, 0, 145, 146, 5, 97, 0, 0, 146, 147, 5, 116, 0, 0, 147, 176, 5, 101, 0, 0, 148, 149, 5, 112, 0, 0, 149, 150, 5, 117, 0, 0, 150, 151, 5, 98, 0, 0, 151, 152, 5, 108, 0, 0, 152, 153, 5, 105, 0, 0, 153, 154, 5, 99, 0, 0, 154, 155, 5, 32, 0, 0, 155, 156, 5, 115, 0, 0, 156, 157, 5, 116, 0, 0, 157, 158, 5, 97, 0, 0, 158, 159, 5, 116, 0, 0, 159, 160, 5, 105, 0, 0, 160, 176, 5, 99, 0, 0, 161, 162, 5, 112, 0, 0, 162, 163, 5, 114, 0, 0, 163, 164, 5, 105, 0, 0, 164, 165, 5, 118, 0, 0, 165, 166, 5, 97, 0, 0, 166, 167, 5, 116, 0, 0, 167, 168, 5, 101, 0, 0, 168, 169, 5, 32, 0, 0, 169, 170, 5, 115, 0, 0, 170, 171, 5, 116, 0, 0, 171, 172, 5, 97, 0, 0, 172, 173, 5, 116, 0, 0, 173, 174, 5, 105, 0, 0, 174, 176, 5, 99, 0, 0, 175, 135, 1, 0, 0, 0, 175, 141, 1, 0, 0, 0, 175, 148, 1, 0, 0, 0, 175, 161, 1, 0, 0, 0, 176, 14, 1, 0, 0, 0, 177, 178, 5, 112, 0, 0, 178, 179, 5, 117, 0, 0, 179, 180, 5, 98, 0, 0, 180, 181, 5, 108, 0, 0, 181, 182, 5, 105, 0, 0, 182, 183, 5, 99, 0, 0, 183, 184, 5, 32, 0, 0, 184, 185, 5, 115, 0, 0, 185, 186, 5, 116, 0, 0, 186, 187, 5, 97, 0, 0, 187, 188, 5, 116, 0, 0, 188, 189, 5, 105, 0, 0, 189, 190, 5, 99, 0, 0, 190, 191, 5, 32, 0, 0, 191, 192, 5, 118, 0, 0, 192, 193, 5, 111, 0, 0, 193, 194, 5, 105, 0, 0, 194, 195, 5, 100, 0, 0, 195, 196, 5, 32, 0, 0, 196, 197, 5, 109, 0, 0, 197, 198, 5, 97, 0, 0, 198, 199, 5, 105, 0, 0, 199, 200, 5, 110, 0, 0, 200, 201, 5, 40, 0, 0, 201, 202, 5, 83, 0, 0, 202, 203, 5, 116, 0, 0, 203, 204, 5, 114, 0, 0, 204, 205, 5, 105, 0, 0, 205, 206, 5, 110, 0, 0, 206, 207, 5, 103, 0, 0, 207, 208, 5, 91, 0, 0, 208, 209, 5, 93, 0, 0, 209, 210, 5, 32, 0, 0, 210, 211, 5, 97, 0, 0, 211, 212, 5, 114, 0, 0, 212, 213, 5, 103, 0, 0, 213, 214, 5, 115, 0, 0, 214, 215, 5, 41, 0, 0, 215, 16, 1, 0, 0, 0, 216, 220, 3, 31, 15, 0, 217, 220, 3, 35, 17, 0, 218, 220, 3, 33, 16, 0, 219, 216, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 219, 218, 1, 0, 0, 0, 220, 18, 1, 0, 0, 0, 221, 224, 3, 27, 13, 0, 222, 224, 3, 29, 14, 0, 223, 221, 1, 0, 0, 0, 223, 222, 1, 0, 0, 0, 224, 20, 1, 0, 0, 0, 225, 232, 3, 37, 18, 0, 226, 232, 3, 39, 19, 0, 227, 232, 3, 41, 20, 0, 228, 232, 3, 43, 21, 0, 229, 232, 3, 45, 22, 0, 230, 232, 3, 47, 23, 0, 231, 225, 1, 0, 0, 0, 231, 226, 1, 0, 0, 0, 231, 227, 1, 0, 0, 0, 231, 228, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 231, 230, 1, 0, 0, 0, 232, 22, 1, 0, 0, 0, 233, 236, 3, 51, 25, 0, 234, 236, 3, 53, 26, 0, 235, 233, 1, 0, 0, 0, 235, 234, 1, 0, 0, 0, 236, 24, 1, 0, 0, 0, 237, 238, 5, 61, 0, 0, 238, 26, 1, 0, 0, 0, 239, 240, 5, 43, 0, 0, 240, 28, 1, 0, 0, 0, 241, 242, 5, 45, 0, 0, 242, 30, 1, 0, 0, 0, 243, 244, 5, 42, 0, 0, 244, 32, 1, 0, 0, 0, 245, 246, 5, 37, 0, 0, 246, 34, 1, 0, 0, 0, 247, 248, 5, 47, 0, 0, 248, 36, 1, 0, 0, 0, 249, 250, 5, 62, 0, 0, 250, 38, 1, 0, 0, 0, 251, 252, 5, 60, 0, 0, 252, 40, 1, 0, 0, 0, 253, 254, 5, 62, 0, 0, 254, 255, 5, 61, 0, 0, 255, 42, 1, 0, 0, 0, 256, 257, 5, 60, 0, 0, 257, 258, 5, 61, 0, 0, 258, 44, 1, 0, 0, 0, 259, 260, 5, 61, 0, 0, 260, 261, 5, 61, 0, 0, 261, 46, 1, 0, 0, 0, 262, 263, 5, 33, 0, 0, 263, 264, 5, 61, 0, 0, 264, 48, 1, 0, 0, 0, 265, 266, 5, 33, 0, 0, 266, 50, 1, 0, 0, 0, 267, 268, 5, 38, 0, 0, 268, 269, 5, 38, 0, 0, 269, 52, 1, 0, 0, 0, 270, 271, 5, 124, 0, 0, 271, 272, 5, 124, 0, 0, 272, 54, 1, 0, 0, 0, 273, 274, 5, 46, 0, 0, 274, 56, 1, 0, 0, 0, 275, 276, 5, 40, 0, 0, 276, 58, 1, 0, 0, 0, 277, 278, 5, 41, 0, 0, 278, 60, 1, 0, 0, 0, 279, 280, 5, 123, 0, 0, 280, 62, 1, 0, 0, 0, 281, 282, 5, 125, 0, 0, 282, 64, 1, 0, 0, 0, 283, 284, 5, 59, 0, 0, 284, 66, 1, 0, 0, 0, 285, 286, 5, 44, 0, 0, 286, 68, 1, 0, 0, 0, 287, 288, 5, 99, 0, 0, 288, 289, 5, 108, 0, 0, 289, 290, 5, 97, 0, 0, 290, 291, 5, 115, 0, 0, 291, 292, 5, 115, 0, 0, 292, 70, 1, 0, 0, 0, 293, 294, 5, 116, 0, 0, 294, 295, 5, 104, 0, 0, 295, 296, 5, 105, 0, 0, 296, 297, 5, 115, 0, 0, 297, 72, 1, 0, 0, 0, 298, 299, 5, 119, 0, 0, 299, 300, 5, 104, 0, 0, 300, 301, 5, 105, 0, 0, 301, 302, 5, 108, 0, 0, 302, 303, 5, 101, 0, 0, 303, 74, 1, 0, 0, 0, 304, 305, 5, 105, 0, 0, 305, 306, 5, 102, 0, 0, 306, 76, 1, 0, 0, 0, 307, 308, 5, 101, 0, 0, 308, 309, 5, 108, 0, 0, 309, 310, 5, 115, 0, 0, 310, 311, 5, 101, 0, 0, 311, 78, 1, 0, 0, 0, 312, 313, 5, 102, 0, 0, 313, 314, 5, 111, 0, 0, 314, 315, 5, 114, 0, 0, 315, 80, 1, 0, 0, 0, 316, 317, 5, 114, 0, 0, 317, 318, 5, 101, 0, 0, 318, 319, 5, 116, 0, 0, 319, 320, 5, 117, 0, 0, 320, 321, 5, 114, 0, 0, 321, 322, 5, 110, 0, 0, 322, 82, 1, 0, 0, 0, 323, 324, 5, 110, 0, 0, 324, 325, 5, 101, 0, 0, 325, 326, 5, 119, 0, 0, 326, 84, 1, 0, 0, 0, 327, 331, 5, 39, 0, 0, 328, 330, 8, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 335, 5, 39, 0, 0, 335, 86, 1, 0, 0, 0, 336, 338, 3, 29, 14, 0, 337, 336, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 341, 3, 95, 47, 0, 340, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 340, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 88, 1, 0, 0, 0, 344, 345, 5, 116, 0, 0, 345, 346, 5, 114, 0, 0, 346, 347, 5, 117, 0, 0, 347, 354, 5, 101, 0, 0, 348, 349, 5, 102, 0, 0, 349, 350, 5, 97, 0, 0, 350, 351, 5, 108, 0, 0, 351, 352, 5, 115, 0, 0, 352, 354, 5, 101, 0, 0, 353, 344, 1, 0, 0, 0, 353, 348, 1, 0, 0, 0, 354, 90, 1, 0, 0, 0, 355, 356, 5, 110, 0, 0, 356, 357, 5, 117, 0, 0, 357, 358, 5, 108, 0, 0, 358, 359, 5, 108, 0, 0, 359, 92, 1, 0, 0, 0, 360, 361, 7, 1, 0, 0, 361, 94, 1, 0, 0, 0, 362, 363, 7, 2, 0, 0, 363, 96, 1, 0, 0, 0, 364, 368, 3, 93, 46, 0, 365, 368, 3, 95, 47, 0, 366, 368, 7, 3, 0, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 98, 1, 0, 0, 0, 369, 373, 3, 93, 46, 0, 370, 372, 3, 97, 48, 0, 371, 370, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 100, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 378, 7, 4, 0, 0, 377, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 6, 50, 0, 0, 382, 102, 1, 0, 0, 0, 383, 384, 5, 47, 0, 0, 384, 385, 5, 47, 0, 0, 385, 389, 1, 0, 0, 0, 386, 388, 8, 0, 0, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 6, 51, 0, 0, 393, 104, 1, 0, 0, 0, 394, 395, 5, 47, 0, 0, 395, 396, 5, 42, 0, 0, 396, 400, 1, 0, 0, 0, 397, 399, 9, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 403, 404, 5, 42, 0, 0, 404, 405, 5, 47, 0, 0, 405, 406, 1, 0, 0, 0, 406, 407, 6, 52, 0, 0, 407, 106, 1, 0, 0, 0, 15, 0, 175, 219, 223, 231, 235, 331, 337, 342, 353, 367, 373, 379, 389, 400, 1, 6, 0, 0] \ No newline at end of file diff --git a/src/main/java/parser/generated/SimpleJavaLexer.java b/src/main/java/parser/generated/SimpleJavaLexer.java index 23296ee..cb01452 100644 --- a/src/main/java/parser/generated/SimpleJavaLexer.java +++ b/src/main/java/parser/generated/SimpleJavaLexer.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; @@ -23,9 +23,9 @@ public class SimpleJavaLexer extends Lexer { Less=20, GreaterEqual=21, LessEqual=22, Equal=23, NotEqual=24, Not=25, And=26, Or=27, Dot=28, OpenRoundBracket=29, ClosedRoundBracket=30, OpenCurlyBracket=31, ClosedCurlyBracket=32, Semicolon=33, Comma=34, Class=35, This=36, While=37, - Do=38, If=39, Else=40, For=41, Return=42, New=43, CharValue=44, IntValue=45, - BooleanValue=46, NullValue=47, Identifier=48, WS=49, InlineComment=50, - MultilineComment=51; + If=38, Else=39, For=40, Return=41, New=42, CharValue=43, IntValue=44, + BooleanValue=45, NullValue=46, Identifier=47, WS=48, InlineComment=49, + MultilineComment=50; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -42,9 +42,9 @@ public class SimpleJavaLexer extends Lexer { "GreaterEqual", "LessEqual", "Equal", "NotEqual", "Not", "And", "Or", "Dot", "OpenRoundBracket", "ClosedRoundBracket", "OpenCurlyBracket", "ClosedCurlyBracket", "Semicolon", "Comma", "Class", "This", "While", - "Do", "If", "Else", "For", "Return", "New", "CharValue", "IntValue", - "BooleanValue", "NullValue", "Alphabetic", "Numeric", "ValidIdentSymbols", - "Identifier", "WS", "InlineComment", "MultilineComment" + "If", "Else", "For", "Return", "New", "CharValue", "IntValue", "BooleanValue", + "NullValue", "Alphabetic", "Numeric", "ValidIdentSymbols", "Identifier", + "WS", "InlineComment", "MultilineComment" }; } public static final String[] ruleNames = makeRuleNames(); @@ -55,8 +55,8 @@ public class SimpleJavaLexer extends Lexer { "'public static void main(String[] args)'", null, null, null, null, "'='", "'+'", "'-'", "'*'", "'%'", "'/'", "'>'", "'<'", "'>='", "'<='", "'=='", "'!='", "'!'", "'&&'", "'||'", "'.'", "'('", "')'", "'{'", "'}'", "';'", - "','", "'class'", "'this'", "'while'", "'do'", "'if'", "'else'", "'for'", - "'return'", "'new'", null, null, null, "'null'" + "','", "'class'", "'this'", "'while'", "'if'", "'else'", "'for'", "'return'", + "'new'", null, null, null, "'null'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -68,9 +68,8 @@ public class SimpleJavaLexer extends Lexer { "Greater", "Less", "GreaterEqual", "LessEqual", "Equal", "NotEqual", "Not", "And", "Or", "Dot", "OpenRoundBracket", "ClosedRoundBracket", "OpenCurlyBracket", "ClosedCurlyBracket", "Semicolon", "Comma", "Class", - "This", "While", "Do", "If", "Else", "For", "Return", "New", "CharValue", - "IntValue", "BooleanValue", "NullValue", "Identifier", "WS", "InlineComment", - "MultilineComment" + "This", "While", "If", "Else", "For", "Return", "New", "CharValue", "IntValue", + "BooleanValue", "NullValue", "Identifier", "WS", "InlineComment", "MultilineComment" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -132,7 +131,7 @@ public class SimpleJavaLexer extends Lexer { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\u0004\u00003\u019d\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+ + "\u0004\u00002\u0198\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+ "\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+ "\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+ "\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+ @@ -146,246 +145,244 @@ public class SimpleJavaLexer extends Lexer { "!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+ "&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+ "+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+ - "0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+ - "5\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003"+ + "0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u0001\u0000"+ + "\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0003\u0006\u00b2\b\u0006\u0001\u0007\u0001\u0007"+ + "\u0001\u0006\u0003\u0006\u00b0\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00de\b\b\u0001\t\u0001\t"+ - "\u0003\t\u00e2\b\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003"+ - "\n\u00ea\b\n\u0001\u000b\u0001\u000b\u0003\u000b\u00ee\b\u000b\u0001\f"+ - "\u0001\f\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+ - "\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012"+ - "\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015"+ - "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017"+ - "\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019"+ - "\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b"+ - "\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e"+ - "\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001"+ - "$\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001"+ - "&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001("+ - "\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001"+ - "*\u0001*\u0001+\u0001+\u0005+\u014f\b+\n+\f+\u0152\t+\u0001+\u0001+\u0001"+ - ",\u0003,\u0157\b,\u0001,\u0004,\u015a\b,\u000b,\f,\u015b\u0001-\u0001"+ - "-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0003-\u0167\b-\u0001"+ - ".\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u00011\u0001"+ - "1\u00011\u00031\u0175\b1\u00012\u00012\u00052\u0179\b2\n2\f2\u017c\t2"+ - "\u00013\u00043\u017f\b3\u000b3\f3\u0180\u00013\u00013\u00014\u00014\u0001"+ - "4\u00014\u00054\u0189\b4\n4\f4\u018c\t4\u00014\u00014\u00015\u00015\u0001"+ - "5\u00015\u00055\u0194\b5\n5\f5\u0197\t5\u00015\u00015\u00015\u00015\u0001"+ - "5\u0001\u0195\u00006\u0001\u0001\u0003\u0002\u0005\u0003\u0007\u0004\t"+ - "\u0005\u000b\u0006\r\u0007\u000f\b\u0011\t\u0013\n\u0015\u000b\u0017\f"+ - "\u0019\r\u001b\u000e\u001d\u000f\u001f\u0010!\u0011#\u0012%\u0013\'\u0014"+ - ")\u0015+\u0016-\u0017/\u00181\u00193\u001a5\u001b7\u001c9\u001d;\u001e"+ - "=\u001f? A!C\"E#G$I%K&M\'O(Q)S*U+W,Y-[.]/_\u0000a\u0000c\u0000e0g1i2k"+ - "3\u0001\u0000\u0005\u0002\u0000\n\n\r\r\u0002\u0000AZaz\u0001\u000009"+ - "\u0002\u0000$$__\u0003\u0000\t\n\r\r \u01af\u0000\u0001\u0001\u0000\u0000"+ - "\u0000\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0005\u0001\u0000\u0000"+ - "\u0000\u0000\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000"+ - "\u0000\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000"+ - "\u000f\u0001\u0000\u0000\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000"+ - "\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000"+ - "\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000"+ - "\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000"+ - "\u001f\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001"+ - "\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000"+ - "\u0000\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000"+ - "\u0000-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001"+ - "\u0001\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000"+ - "\u0000\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000"+ - "\u0000;\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?"+ - "\u0001\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000"+ - "\u0000\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000"+ - "\u0000I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M"+ - "\u0001\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000"+ - "\u0000\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000"+ - "\u0000W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000["+ - "\u0001\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000e\u0001\u0000"+ - "\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001\u0000\u0000\u0000"+ - "\u0000k\u0001\u0000\u0000\u0000\u0001m\u0001\u0000\u0000\u0000\u0003p"+ - "\u0001\u0000\u0000\u0000\u0005s\u0001\u0000\u0000\u0000\u0007x\u0001\u0000"+ - "\u0000\u0000\t\u0080\u0001\u0000\u0000\u0000\u000b\u0085\u0001\u0000\u0000"+ - "\u0000\r\u00b1\u0001\u0000\u0000\u0000\u000f\u00b3\u0001\u0000\u0000\u0000"+ - "\u0011\u00dd\u0001\u0000\u0000\u0000\u0013\u00e1\u0001\u0000\u0000\u0000"+ - "\u0015\u00e9\u0001\u0000\u0000\u0000\u0017\u00ed\u0001\u0000\u0000\u0000"+ - "\u0019\u00ef\u0001\u0000\u0000\u0000\u001b\u00f1\u0001\u0000\u0000\u0000"+ - "\u001d\u00f3\u0001\u0000\u0000\u0000\u001f\u00f5\u0001\u0000\u0000\u0000"+ - "!\u00f7\u0001\u0000\u0000\u0000#\u00f9\u0001\u0000\u0000\u0000%\u00fb"+ - "\u0001\u0000\u0000\u0000\'\u00fd\u0001\u0000\u0000\u0000)\u00ff\u0001"+ - "\u0000\u0000\u0000+\u0102\u0001\u0000\u0000\u0000-\u0105\u0001\u0000\u0000"+ - "\u0000/\u0108\u0001\u0000\u0000\u00001\u010b\u0001\u0000\u0000\u00003"+ - "\u010d\u0001\u0000\u0000\u00005\u0110\u0001\u0000\u0000\u00007\u0113\u0001"+ - "\u0000\u0000\u00009\u0115\u0001\u0000\u0000\u0000;\u0117\u0001\u0000\u0000"+ - "\u0000=\u0119\u0001\u0000\u0000\u0000?\u011b\u0001\u0000\u0000\u0000A"+ - "\u011d\u0001\u0000\u0000\u0000C\u011f\u0001\u0000\u0000\u0000E\u0121\u0001"+ - "\u0000\u0000\u0000G\u0127\u0001\u0000\u0000\u0000I\u012c\u0001\u0000\u0000"+ - "\u0000K\u0132\u0001\u0000\u0000\u0000M\u0135\u0001\u0000\u0000\u0000O"+ - "\u0138\u0001\u0000\u0000\u0000Q\u013d\u0001\u0000\u0000\u0000S\u0141\u0001"+ - "\u0000\u0000\u0000U\u0148\u0001\u0000\u0000\u0000W\u014c\u0001\u0000\u0000"+ - "\u0000Y\u0156\u0001\u0000\u0000\u0000[\u0166\u0001\u0000\u0000\u0000]"+ - "\u0168\u0001\u0000\u0000\u0000_\u016d\u0001\u0000\u0000\u0000a\u016f\u0001"+ - "\u0000\u0000\u0000c\u0174\u0001\u0000\u0000\u0000e\u0176\u0001\u0000\u0000"+ - "\u0000g\u017e\u0001\u0000\u0000\u0000i\u0184\u0001\u0000\u0000\u0000k"+ - "\u018f\u0001\u0000\u0000\u0000mn\u0005+\u0000\u0000no\u0005+\u0000\u0000"+ - "o\u0002\u0001\u0000\u0000\u0000pq\u0005-\u0000\u0000qr\u0005-\u0000\u0000"+ - "r\u0004\u0001\u0000\u0000\u0000st\u0005v\u0000\u0000tu\u0005o\u0000\u0000"+ - "uv\u0005i\u0000\u0000vw\u0005d\u0000\u0000w\u0006\u0001\u0000\u0000\u0000"+ - "xy\u0005b\u0000\u0000yz\u0005o\u0000\u0000z{\u0005o\u0000\u0000{|\u0005"+ - "l\u0000\u0000|}\u0005e\u0000\u0000}~\u0005a\u0000\u0000~\u007f\u0005n"+ - "\u0000\u0000\u007f\b\u0001\u0000\u0000\u0000\u0080\u0081\u0005c\u0000"+ - "\u0000\u0081\u0082\u0005h\u0000\u0000\u0082\u0083\u0005a\u0000\u0000\u0083"+ - "\u0084\u0005r\u0000\u0000\u0084\n\u0001\u0000\u0000\u0000\u0085\u0086"+ - "\u0005i\u0000\u0000\u0086\u0087\u0005n\u0000\u0000\u0087\u0088\u0005t"+ - "\u0000\u0000\u0088\f\u0001\u0000\u0000\u0000\u0089\u008a\u0005p\u0000"+ - "\u0000\u008a\u008b\u0005u\u0000\u0000\u008b\u008c\u0005b\u0000\u0000\u008c"+ - "\u008d\u0005l\u0000\u0000\u008d\u008e\u0005i\u0000\u0000\u008e\u00b2\u0005"+ - "c\u0000\u0000\u008f\u0090\u0005p\u0000\u0000\u0090\u0091\u0005r\u0000"+ - "\u0000\u0091\u0092\u0005i\u0000\u0000\u0092\u0093\u0005v\u0000\u0000\u0093"+ - "\u0094\u0005a\u0000\u0000\u0094\u0095\u0005t\u0000\u0000\u0095\u00b2\u0005"+ - "e\u0000\u0000\u0096\u0097\u0005p\u0000\u0000\u0097\u0098\u0005u\u0000"+ - "\u0000\u0098\u0099\u0005b\u0000\u0000\u0099\u009a\u0005l\u0000\u0000\u009a"+ - "\u009b\u0005i\u0000\u0000\u009b\u009c\u0005c\u0000\u0000\u009c\u009d\u0005"+ - " \u0000\u0000\u009d\u009e\u0005s\u0000\u0000\u009e\u009f\u0005t\u0000"+ - "\u0000\u009f\u00a0\u0005a\u0000\u0000\u00a0\u00a1\u0005t\u0000\u0000\u00a1"+ - "\u00a2\u0005i\u0000\u0000\u00a2\u00b2\u0005c\u0000\u0000\u00a3\u00a4\u0005"+ - "p\u0000\u0000\u00a4\u00a5\u0005r\u0000\u0000\u00a5\u00a6\u0005i\u0000"+ - "\u0000\u00a6\u00a7\u0005v\u0000\u0000\u00a7\u00a8\u0005a\u0000\u0000\u00a8"+ - "\u00a9\u0005t\u0000\u0000\u00a9\u00aa\u0005e\u0000\u0000\u00aa\u00ab\u0005"+ - " \u0000\u0000\u00ab\u00ac\u0005s\u0000\u0000\u00ac\u00ad\u0005t\u0000"+ - "\u0000\u00ad\u00ae\u0005a\u0000\u0000\u00ae\u00af\u0005t\u0000\u0000\u00af"+ - "\u00b0\u0005i\u0000\u0000\u00b0\u00b2\u0005c\u0000\u0000\u00b1\u0089\u0001"+ - "\u0000\u0000\u0000\u00b1\u008f\u0001\u0000\u0000\u0000\u00b1\u0096\u0001"+ - "\u0000\u0000\u0000\u00b1\u00a3\u0001\u0000\u0000\u0000\u00b2\u000e\u0001"+ - "\u0000\u0000\u0000\u00b3\u00b4\u0005p\u0000\u0000\u00b4\u00b5\u0005u\u0000"+ - "\u0000\u00b5\u00b6\u0005b\u0000\u0000\u00b6\u00b7\u0005l\u0000\u0000\u00b7"+ - "\u00b8\u0005i\u0000\u0000\u00b8\u00b9\u0005c\u0000\u0000\u00b9\u00ba\u0005"+ - " \u0000\u0000\u00ba\u00bb\u0005s\u0000\u0000\u00bb\u00bc\u0005t\u0000"+ - "\u0000\u00bc\u00bd\u0005a\u0000\u0000\u00bd\u00be\u0005t\u0000\u0000\u00be"+ - "\u00bf\u0005i\u0000\u0000\u00bf\u00c0\u0005c\u0000\u0000\u00c0\u00c1\u0005"+ - " \u0000\u0000\u00c1\u00c2\u0005v\u0000\u0000\u00c2\u00c3\u0005o\u0000"+ - "\u0000\u00c3\u00c4\u0005i\u0000\u0000\u00c4\u00c5\u0005d\u0000\u0000\u00c5"+ - "\u00c6\u0005 \u0000\u0000\u00c6\u00c7\u0005m\u0000\u0000\u00c7\u00c8\u0005"+ - "a\u0000\u0000\u00c8\u00c9\u0005i\u0000\u0000\u00c9\u00ca\u0005n\u0000"+ - "\u0000\u00ca\u00cb\u0005(\u0000\u0000\u00cb\u00cc\u0005S\u0000\u0000\u00cc"+ - "\u00cd\u0005t\u0000\u0000\u00cd\u00ce\u0005r\u0000\u0000\u00ce\u00cf\u0005"+ - "i\u0000\u0000\u00cf\u00d0\u0005n\u0000\u0000\u00d0\u00d1\u0005g\u0000"+ - "\u0000\u00d1\u00d2\u0005[\u0000\u0000\u00d2\u00d3\u0005]\u0000\u0000\u00d3"+ - "\u00d4\u0005 \u0000\u0000\u00d4\u00d5\u0005a\u0000\u0000\u00d5\u00d6\u0005"+ - "r\u0000\u0000\u00d6\u00d7\u0005g\u0000\u0000\u00d7\u00d8\u0005s\u0000"+ - "\u0000\u00d8\u00d9\u0005)\u0000\u0000\u00d9\u0010\u0001\u0000\u0000\u0000"+ - "\u00da\u00de\u0003\u001f\u000f\u0000\u00db\u00de\u0003#\u0011\u0000\u00dc"+ - "\u00de\u0003!\u0010\u0000\u00dd\u00da\u0001\u0000\u0000\u0000\u00dd\u00db"+ - "\u0001\u0000\u0000\u0000\u00dd\u00dc\u0001\u0000\u0000\u0000\u00de\u0012"+ - "\u0001\u0000\u0000\u0000\u00df\u00e2\u0003\u001b\r\u0000\u00e0\u00e2\u0003"+ - "\u001d\u000e\u0000\u00e1\u00df\u0001\u0000\u0000\u0000\u00e1\u00e0\u0001"+ - "\u0000\u0000\u0000\u00e2\u0014\u0001\u0000\u0000\u0000\u00e3\u00ea\u0003"+ - "%\u0012\u0000\u00e4\u00ea\u0003\'\u0013\u0000\u00e5\u00ea\u0003)\u0014"+ - "\u0000\u00e6\u00ea\u0003+\u0015\u0000\u00e7\u00ea\u0003-\u0016\u0000\u00e8"+ - "\u00ea\u0003/\u0017\u0000\u00e9\u00e3\u0001\u0000\u0000\u0000\u00e9\u00e4"+ - "\u0001\u0000\u0000\u0000\u00e9\u00e5\u0001\u0000\u0000\u0000\u00e9\u00e6"+ - "\u0001\u0000\u0000\u0000\u00e9\u00e7\u0001\u0000\u0000\u0000\u00e9\u00e8"+ - "\u0001\u0000\u0000\u0000\u00ea\u0016\u0001\u0000\u0000\u0000\u00eb\u00ee"+ - "\u00033\u0019\u0000\u00ec\u00ee\u00035\u001a\u0000\u00ed\u00eb\u0001\u0000"+ - "\u0000\u0000\u00ed\u00ec\u0001\u0000\u0000\u0000\u00ee\u0018\u0001\u0000"+ - "\u0000\u0000\u00ef\u00f0\u0005=\u0000\u0000\u00f0\u001a\u0001\u0000\u0000"+ - "\u0000\u00f1\u00f2\u0005+\u0000\u0000\u00f2\u001c\u0001\u0000\u0000\u0000"+ - "\u00f3\u00f4\u0005-\u0000\u0000\u00f4\u001e\u0001\u0000\u0000\u0000\u00f5"+ - "\u00f6\u0005*\u0000\u0000\u00f6 \u0001\u0000\u0000\u0000\u00f7\u00f8\u0005"+ - "%\u0000\u0000\u00f8\"\u0001\u0000\u0000\u0000\u00f9\u00fa\u0005/\u0000"+ - "\u0000\u00fa$\u0001\u0000\u0000\u0000\u00fb\u00fc\u0005>\u0000\u0000\u00fc"+ - "&\u0001\u0000\u0000\u0000\u00fd\u00fe\u0005<\u0000\u0000\u00fe(\u0001"+ - "\u0000\u0000\u0000\u00ff\u0100\u0005>\u0000\u0000\u0100\u0101\u0005=\u0000"+ - "\u0000\u0101*\u0001\u0000\u0000\u0000\u0102\u0103\u0005<\u0000\u0000\u0103"+ - "\u0104\u0005=\u0000\u0000\u0104,\u0001\u0000\u0000\u0000\u0105\u0106\u0005"+ - "=\u0000\u0000\u0106\u0107\u0005=\u0000\u0000\u0107.\u0001\u0000\u0000"+ - "\u0000\u0108\u0109\u0005!\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a"+ - "0\u0001\u0000\u0000\u0000\u010b\u010c\u0005!\u0000\u0000\u010c2\u0001"+ - "\u0000\u0000\u0000\u010d\u010e\u0005&\u0000\u0000\u010e\u010f\u0005&\u0000"+ - "\u0000\u010f4\u0001\u0000\u0000\u0000\u0110\u0111\u0005|\u0000\u0000\u0111"+ - "\u0112\u0005|\u0000\u0000\u01126\u0001\u0000\u0000\u0000\u0113\u0114\u0005"+ - ".\u0000\u0000\u01148\u0001\u0000\u0000\u0000\u0115\u0116\u0005(\u0000"+ - "\u0000\u0116:\u0001\u0000\u0000\u0000\u0117\u0118\u0005)\u0000\u0000\u0118"+ - "<\u0001\u0000\u0000\u0000\u0119\u011a\u0005{\u0000\u0000\u011a>\u0001"+ - "\u0000\u0000\u0000\u011b\u011c\u0005}\u0000\u0000\u011c@\u0001\u0000\u0000"+ - "\u0000\u011d\u011e\u0005;\u0000\u0000\u011eB\u0001\u0000\u0000\u0000\u011f"+ - "\u0120\u0005,\u0000\u0000\u0120D\u0001\u0000\u0000\u0000\u0121\u0122\u0005"+ - "c\u0000\u0000\u0122\u0123\u0005l\u0000\u0000\u0123\u0124\u0005a\u0000"+ - "\u0000\u0124\u0125\u0005s\u0000\u0000\u0125\u0126\u0005s\u0000\u0000\u0126"+ - "F\u0001\u0000\u0000\u0000\u0127\u0128\u0005t\u0000\u0000\u0128\u0129\u0005"+ - "h\u0000\u0000\u0129\u012a\u0005i\u0000\u0000\u012a\u012b\u0005s\u0000"+ - "\u0000\u012bH\u0001\u0000\u0000\u0000\u012c\u012d\u0005w\u0000\u0000\u012d"+ - "\u012e\u0005h\u0000\u0000\u012e\u012f\u0005i\u0000\u0000\u012f\u0130\u0005"+ - "l\u0000\u0000\u0130\u0131\u0005e\u0000\u0000\u0131J\u0001\u0000\u0000"+ - "\u0000\u0132\u0133\u0005d\u0000\u0000\u0133\u0134\u0005o\u0000\u0000\u0134"+ - "L\u0001\u0000\u0000\u0000\u0135\u0136\u0005i\u0000\u0000\u0136\u0137\u0005"+ - "f\u0000\u0000\u0137N\u0001\u0000\u0000\u0000\u0138\u0139\u0005e\u0000"+ - "\u0000\u0139\u013a\u0005l\u0000\u0000\u013a\u013b\u0005s\u0000\u0000\u013b"+ - "\u013c\u0005e\u0000\u0000\u013cP\u0001\u0000\u0000\u0000\u013d\u013e\u0005"+ - "f\u0000\u0000\u013e\u013f\u0005o\u0000\u0000\u013f\u0140\u0005r\u0000"+ - "\u0000\u0140R\u0001\u0000\u0000\u0000\u0141\u0142\u0005r\u0000\u0000\u0142"+ - "\u0143\u0005e\u0000\u0000\u0143\u0144\u0005t\u0000\u0000\u0144\u0145\u0005"+ - "u\u0000\u0000\u0145\u0146\u0005r\u0000\u0000\u0146\u0147\u0005n\u0000"+ - "\u0000\u0147T\u0001\u0000\u0000\u0000\u0148\u0149\u0005n\u0000\u0000\u0149"+ - "\u014a\u0005e\u0000\u0000\u014a\u014b\u0005w\u0000\u0000\u014bV\u0001"+ - "\u0000\u0000\u0000\u014c\u0150\u0005\'\u0000\u0000\u014d\u014f\b\u0000"+ - "\u0000\u0000\u014e\u014d\u0001\u0000\u0000\u0000\u014f\u0152\u0001\u0000"+ - "\u0000\u0000\u0150\u014e\u0001\u0000\u0000\u0000\u0150\u0151\u0001\u0000"+ - "\u0000\u0000\u0151\u0153\u0001\u0000\u0000\u0000\u0152\u0150\u0001\u0000"+ - "\u0000\u0000\u0153\u0154\u0005\'\u0000\u0000\u0154X\u0001\u0000\u0000"+ - "\u0000\u0155\u0157\u0003\u001d\u000e\u0000\u0156\u0155\u0001\u0000\u0000"+ - "\u0000\u0156\u0157\u0001\u0000\u0000\u0000\u0157\u0159\u0001\u0000\u0000"+ - "\u0000\u0158\u015a\u0003a0\u0000\u0159\u0158\u0001\u0000\u0000\u0000\u015a"+ - "\u015b\u0001\u0000\u0000\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015b"+ - "\u015c\u0001\u0000\u0000\u0000\u015cZ\u0001\u0000\u0000\u0000\u015d\u015e"+ - "\u0005t\u0000\u0000\u015e\u015f\u0005r\u0000\u0000\u015f\u0160\u0005u"+ - "\u0000\u0000\u0160\u0167\u0005e\u0000\u0000\u0161\u0162\u0005f\u0000\u0000"+ - "\u0162\u0163\u0005a\u0000\u0000\u0163\u0164\u0005l\u0000\u0000\u0164\u0165"+ - "\u0005s\u0000\u0000\u0165\u0167\u0005e\u0000\u0000\u0166\u015d\u0001\u0000"+ - "\u0000\u0000\u0166\u0161\u0001\u0000\u0000\u0000\u0167\\\u0001\u0000\u0000"+ - "\u0000\u0168\u0169\u0005n\u0000\u0000\u0169\u016a\u0005u\u0000\u0000\u016a"+ - "\u016b\u0005l\u0000\u0000\u016b\u016c\u0005l\u0000\u0000\u016c^\u0001"+ - "\u0000\u0000\u0000\u016d\u016e\u0007\u0001\u0000\u0000\u016e`\u0001\u0000"+ - "\u0000\u0000\u016f\u0170\u0007\u0002\u0000\u0000\u0170b\u0001\u0000\u0000"+ - "\u0000\u0171\u0175\u0003_/\u0000\u0172\u0175\u0003a0\u0000\u0173\u0175"+ - "\u0007\u0003\u0000\u0000\u0174\u0171\u0001\u0000\u0000\u0000\u0174\u0172"+ - "\u0001\u0000\u0000\u0000\u0174\u0173\u0001\u0000\u0000\u0000\u0175d\u0001"+ - "\u0000\u0000\u0000\u0176\u017a\u0003_/\u0000\u0177\u0179\u0003c1\u0000"+ - "\u0178\u0177\u0001\u0000\u0000\u0000\u0179\u017c\u0001\u0000\u0000\u0000"+ - "\u017a\u0178\u0001\u0000\u0000\u0000\u017a\u017b\u0001\u0000\u0000\u0000"+ - "\u017bf\u0001\u0000\u0000\u0000\u017c\u017a\u0001\u0000\u0000\u0000\u017d"+ - "\u017f\u0007\u0004\u0000\u0000\u017e\u017d\u0001\u0000\u0000\u0000\u017f"+ - "\u0180\u0001\u0000\u0000\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0180"+ - "\u0181\u0001\u0000\u0000\u0000\u0181\u0182\u0001\u0000\u0000\u0000\u0182"+ - "\u0183\u00063\u0000\u0000\u0183h\u0001\u0000\u0000\u0000\u0184\u0185\u0005"+ - "/\u0000\u0000\u0185\u0186\u0005/\u0000\u0000\u0186\u018a\u0001\u0000\u0000"+ - "\u0000\u0187\u0189\b\u0000\u0000\u0000\u0188\u0187\u0001\u0000\u0000\u0000"+ - "\u0189\u018c\u0001\u0000\u0000\u0000\u018a\u0188\u0001\u0000\u0000\u0000"+ - "\u018a\u018b\u0001\u0000\u0000\u0000\u018b\u018d\u0001\u0000\u0000\u0000"+ - "\u018c\u018a\u0001\u0000\u0000\u0000\u018d\u018e\u00064\u0000\u0000\u018e"+ - "j\u0001\u0000\u0000\u0000\u018f\u0190\u0005/\u0000\u0000\u0190\u0191\u0005"+ - "*\u0000\u0000\u0191\u0195\u0001\u0000\u0000\u0000\u0192\u0194\t\u0000"+ - "\u0000\u0000\u0193\u0192\u0001\u0000\u0000\u0000\u0194\u0197\u0001\u0000"+ - "\u0000\u0000\u0195\u0196\u0001\u0000\u0000\u0000\u0195\u0193\u0001\u0000"+ - "\u0000\u0000\u0196\u0198\u0001\u0000\u0000\u0000\u0197\u0195\u0001\u0000"+ - "\u0000\u0000\u0198\u0199\u0005*\u0000\u0000\u0199\u019a\u0005/\u0000\u0000"+ - "\u019a\u019b\u0001\u0000\u0000\u0000\u019b\u019c\u00065\u0000\u0000\u019c"+ - "l\u0001\u0000\u0000\u0000\u000f\u0000\u00b1\u00dd\u00e1\u00e9\u00ed\u0150"+ - "\u0156\u015b\u0166\u0174\u017a\u0180\u018a\u0195\u0001\u0006\u0000\u0000"; + "\u0001\b\u0001\b\u0001\b\u0003\b\u00dc\b\b\u0001\t\u0001\t\u0003\t\u00e0"+ + "\b\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u00e8\b\n"+ + "\u0001\u000b\u0001\u000b\u0003\u000b\u00ec\b\u000b\u0001\f\u0001\f\u0001"+ + "\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010"+ + "\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013"+ + "\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001c"+ + "\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f"+ + "\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001"+ + "\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001"+ + "$\u0001$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001"+ + "&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001"+ + "(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0005*\u014a"+ + "\b*\n*\f*\u014d\t*\u0001*\u0001*\u0001+\u0003+\u0152\b+\u0001+\u0004+"+ + "\u0155\b+\u000b+\f+\u0156\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001"+ + ",\u0001,\u0001,\u0003,\u0162\b,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001"+ + ".\u0001.\u0001/\u0001/\u00010\u00010\u00010\u00030\u0170\b0\u00011\u0001"+ + "1\u00051\u0174\b1\n1\f1\u0177\t1\u00012\u00042\u017a\b2\u000b2\f2\u017b"+ + "\u00012\u00012\u00013\u00013\u00013\u00013\u00053\u0184\b3\n3\f3\u0187"+ + "\t3\u00013\u00013\u00014\u00014\u00014\u00014\u00054\u018f\b4\n4\f4\u0192"+ + "\t4\u00014\u00014\u00014\u00014\u00014\u0001\u0190\u00005\u0001\u0001"+ + "\u0003\u0002\u0005\u0003\u0007\u0004\t\u0005\u000b\u0006\r\u0007\u000f"+ + "\b\u0011\t\u0013\n\u0015\u000b\u0017\f\u0019\r\u001b\u000e\u001d\u000f"+ + "\u001f\u0010!\u0011#\u0012%\u0013\'\u0014)\u0015+\u0016-\u0017/\u0018"+ + "1\u00193\u001a5\u001b7\u001c9\u001d;\u001e=\u001f? A!C\"E#G$I%K&M\'O("+ + "Q)S*U+W,Y-[.]\u0000_\u0000a\u0000c/e0g1i2\u0001\u0000\u0005\u0002\u0000"+ + "\n\n\r\r\u0002\u0000AZaz\u0001\u000009\u0002\u0000$$__\u0003\u0000\t\n"+ + "\r\r \u01aa\u0000\u0001\u0001\u0000\u0000\u0000\u0000\u0003\u0001\u0000"+ + "\u0000\u0000\u0000\u0005\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0000"+ + "\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000\u000b\u0001\u0000\u0000"+ + "\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\u0000"+ + "\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000"+ + "\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000"+ + "\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000"+ + "\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000"+ + "\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%"+ + "\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001"+ + "\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000"+ + "\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u0000"+ + "3\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001"+ + "\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000"+ + "\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000"+ + "A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001"+ + "\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000"+ + "\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000\u0000\u0000"+ + "O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000\u0000S\u0001"+ + "\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000W\u0001\u0000\u0000"+ + "\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001\u0000\u0000\u0000\u0000"+ + "c\u0001\u0000\u0000\u0000\u0000e\u0001\u0000\u0000\u0000\u0000g\u0001"+ + "\u0000\u0000\u0000\u0000i\u0001\u0000\u0000\u0000\u0001k\u0001\u0000\u0000"+ + "\u0000\u0003n\u0001\u0000\u0000\u0000\u0005q\u0001\u0000\u0000\u0000\u0007"+ + "v\u0001\u0000\u0000\u0000\t~\u0001\u0000\u0000\u0000\u000b\u0083\u0001"+ + "\u0000\u0000\u0000\r\u00af\u0001\u0000\u0000\u0000\u000f\u00b1\u0001\u0000"+ + "\u0000\u0000\u0011\u00db\u0001\u0000\u0000\u0000\u0013\u00df\u0001\u0000"+ + "\u0000\u0000\u0015\u00e7\u0001\u0000\u0000\u0000\u0017\u00eb\u0001\u0000"+ + "\u0000\u0000\u0019\u00ed\u0001\u0000\u0000\u0000\u001b\u00ef\u0001\u0000"+ + "\u0000\u0000\u001d\u00f1\u0001\u0000\u0000\u0000\u001f\u00f3\u0001\u0000"+ + "\u0000\u0000!\u00f5\u0001\u0000\u0000\u0000#\u00f7\u0001\u0000\u0000\u0000"+ + "%\u00f9\u0001\u0000\u0000\u0000\'\u00fb\u0001\u0000\u0000\u0000)\u00fd"+ + "\u0001\u0000\u0000\u0000+\u0100\u0001\u0000\u0000\u0000-\u0103\u0001\u0000"+ + "\u0000\u0000/\u0106\u0001\u0000\u0000\u00001\u0109\u0001\u0000\u0000\u0000"+ + "3\u010b\u0001\u0000\u0000\u00005\u010e\u0001\u0000\u0000\u00007\u0111"+ + "\u0001\u0000\u0000\u00009\u0113\u0001\u0000\u0000\u0000;\u0115\u0001\u0000"+ + "\u0000\u0000=\u0117\u0001\u0000\u0000\u0000?\u0119\u0001\u0000\u0000\u0000"+ + "A\u011b\u0001\u0000\u0000\u0000C\u011d\u0001\u0000\u0000\u0000E\u011f"+ + "\u0001\u0000\u0000\u0000G\u0125\u0001\u0000\u0000\u0000I\u012a\u0001\u0000"+ + "\u0000\u0000K\u0130\u0001\u0000\u0000\u0000M\u0133\u0001\u0000\u0000\u0000"+ + "O\u0138\u0001\u0000\u0000\u0000Q\u013c\u0001\u0000\u0000\u0000S\u0143"+ + "\u0001\u0000\u0000\u0000U\u0147\u0001\u0000\u0000\u0000W\u0151\u0001\u0000"+ + "\u0000\u0000Y\u0161\u0001\u0000\u0000\u0000[\u0163\u0001\u0000\u0000\u0000"+ + "]\u0168\u0001\u0000\u0000\u0000_\u016a\u0001\u0000\u0000\u0000a\u016f"+ + "\u0001\u0000\u0000\u0000c\u0171\u0001\u0000\u0000\u0000e\u0179\u0001\u0000"+ + "\u0000\u0000g\u017f\u0001\u0000\u0000\u0000i\u018a\u0001\u0000\u0000\u0000"+ + "kl\u0005+\u0000\u0000lm\u0005+\u0000\u0000m\u0002\u0001\u0000\u0000\u0000"+ + "no\u0005-\u0000\u0000op\u0005-\u0000\u0000p\u0004\u0001\u0000\u0000\u0000"+ + "qr\u0005v\u0000\u0000rs\u0005o\u0000\u0000st\u0005i\u0000\u0000tu\u0005"+ + "d\u0000\u0000u\u0006\u0001\u0000\u0000\u0000vw\u0005b\u0000\u0000wx\u0005"+ + "o\u0000\u0000xy\u0005o\u0000\u0000yz\u0005l\u0000\u0000z{\u0005e\u0000"+ + "\u0000{|\u0005a\u0000\u0000|}\u0005n\u0000\u0000}\b\u0001\u0000\u0000"+ + "\u0000~\u007f\u0005c\u0000\u0000\u007f\u0080\u0005h\u0000\u0000\u0080"+ + "\u0081\u0005a\u0000\u0000\u0081\u0082\u0005r\u0000\u0000\u0082\n\u0001"+ + "\u0000\u0000\u0000\u0083\u0084\u0005i\u0000\u0000\u0084\u0085\u0005n\u0000"+ + "\u0000\u0085\u0086\u0005t\u0000\u0000\u0086\f\u0001\u0000\u0000\u0000"+ + "\u0087\u0088\u0005p\u0000\u0000\u0088\u0089\u0005u\u0000\u0000\u0089\u008a"+ + "\u0005b\u0000\u0000\u008a\u008b\u0005l\u0000\u0000\u008b\u008c\u0005i"+ + "\u0000\u0000\u008c\u00b0\u0005c\u0000\u0000\u008d\u008e\u0005p\u0000\u0000"+ + "\u008e\u008f\u0005r\u0000\u0000\u008f\u0090\u0005i\u0000\u0000\u0090\u0091"+ + "\u0005v\u0000\u0000\u0091\u0092\u0005a\u0000\u0000\u0092\u0093\u0005t"+ + "\u0000\u0000\u0093\u00b0\u0005e\u0000\u0000\u0094\u0095\u0005p\u0000\u0000"+ + "\u0095\u0096\u0005u\u0000\u0000\u0096\u0097\u0005b\u0000\u0000\u0097\u0098"+ + "\u0005l\u0000\u0000\u0098\u0099\u0005i\u0000\u0000\u0099\u009a\u0005c"+ + "\u0000\u0000\u009a\u009b\u0005 \u0000\u0000\u009b\u009c\u0005s\u0000\u0000"+ + "\u009c\u009d\u0005t\u0000\u0000\u009d\u009e\u0005a\u0000\u0000\u009e\u009f"+ + "\u0005t\u0000\u0000\u009f\u00a0\u0005i\u0000\u0000\u00a0\u00b0\u0005c"+ + "\u0000\u0000\u00a1\u00a2\u0005p\u0000\u0000\u00a2\u00a3\u0005r\u0000\u0000"+ + "\u00a3\u00a4\u0005i\u0000\u0000\u00a4\u00a5\u0005v\u0000\u0000\u00a5\u00a6"+ + "\u0005a\u0000\u0000\u00a6\u00a7\u0005t\u0000\u0000\u00a7\u00a8\u0005e"+ + "\u0000\u0000\u00a8\u00a9\u0005 \u0000\u0000\u00a9\u00aa\u0005s\u0000\u0000"+ + "\u00aa\u00ab\u0005t\u0000\u0000\u00ab\u00ac\u0005a\u0000\u0000\u00ac\u00ad"+ + "\u0005t\u0000\u0000\u00ad\u00ae\u0005i\u0000\u0000\u00ae\u00b0\u0005c"+ + "\u0000\u0000\u00af\u0087\u0001\u0000\u0000\u0000\u00af\u008d\u0001\u0000"+ + "\u0000\u0000\u00af\u0094\u0001\u0000\u0000\u0000\u00af\u00a1\u0001\u0000"+ + "\u0000\u0000\u00b0\u000e\u0001\u0000\u0000\u0000\u00b1\u00b2\u0005p\u0000"+ + "\u0000\u00b2\u00b3\u0005u\u0000\u0000\u00b3\u00b4\u0005b\u0000\u0000\u00b4"+ + "\u00b5\u0005l\u0000\u0000\u00b5\u00b6\u0005i\u0000\u0000\u00b6\u00b7\u0005"+ + "c\u0000\u0000\u00b7\u00b8\u0005 \u0000\u0000\u00b8\u00b9\u0005s\u0000"+ + "\u0000\u00b9\u00ba\u0005t\u0000\u0000\u00ba\u00bb\u0005a\u0000\u0000\u00bb"+ + "\u00bc\u0005t\u0000\u0000\u00bc\u00bd\u0005i\u0000\u0000\u00bd\u00be\u0005"+ + "c\u0000\u0000\u00be\u00bf\u0005 \u0000\u0000\u00bf\u00c0\u0005v\u0000"+ + "\u0000\u00c0\u00c1\u0005o\u0000\u0000\u00c1\u00c2\u0005i\u0000\u0000\u00c2"+ + "\u00c3\u0005d\u0000\u0000\u00c3\u00c4\u0005 \u0000\u0000\u00c4\u00c5\u0005"+ + "m\u0000\u0000\u00c5\u00c6\u0005a\u0000\u0000\u00c6\u00c7\u0005i\u0000"+ + "\u0000\u00c7\u00c8\u0005n\u0000\u0000\u00c8\u00c9\u0005(\u0000\u0000\u00c9"+ + "\u00ca\u0005S\u0000\u0000\u00ca\u00cb\u0005t\u0000\u0000\u00cb\u00cc\u0005"+ + "r\u0000\u0000\u00cc\u00cd\u0005i\u0000\u0000\u00cd\u00ce\u0005n\u0000"+ + "\u0000\u00ce\u00cf\u0005g\u0000\u0000\u00cf\u00d0\u0005[\u0000\u0000\u00d0"+ + "\u00d1\u0005]\u0000\u0000\u00d1\u00d2\u0005 \u0000\u0000\u00d2\u00d3\u0005"+ + "a\u0000\u0000\u00d3\u00d4\u0005r\u0000\u0000\u00d4\u00d5\u0005g\u0000"+ + "\u0000\u00d5\u00d6\u0005s\u0000\u0000\u00d6\u00d7\u0005)\u0000\u0000\u00d7"+ + "\u0010\u0001\u0000\u0000\u0000\u00d8\u00dc\u0003\u001f\u000f\u0000\u00d9"+ + "\u00dc\u0003#\u0011\u0000\u00da\u00dc\u0003!\u0010\u0000\u00db\u00d8\u0001"+ + "\u0000\u0000\u0000\u00db\u00d9\u0001\u0000\u0000\u0000\u00db\u00da\u0001"+ + "\u0000\u0000\u0000\u00dc\u0012\u0001\u0000\u0000\u0000\u00dd\u00e0\u0003"+ + "\u001b\r\u0000\u00de\u00e0\u0003\u001d\u000e\u0000\u00df\u00dd\u0001\u0000"+ + "\u0000\u0000\u00df\u00de\u0001\u0000\u0000\u0000\u00e0\u0014\u0001\u0000"+ + "\u0000\u0000\u00e1\u00e8\u0003%\u0012\u0000\u00e2\u00e8\u0003\'\u0013"+ + "\u0000\u00e3\u00e8\u0003)\u0014\u0000\u00e4\u00e8\u0003+\u0015\u0000\u00e5"+ + "\u00e8\u0003-\u0016\u0000\u00e6\u00e8\u0003/\u0017\u0000\u00e7\u00e1\u0001"+ + "\u0000\u0000\u0000\u00e7\u00e2\u0001\u0000\u0000\u0000\u00e7\u00e3\u0001"+ + "\u0000\u0000\u0000\u00e7\u00e4\u0001\u0000\u0000\u0000\u00e7\u00e5\u0001"+ + "\u0000\u0000\u0000\u00e7\u00e6\u0001\u0000\u0000\u0000\u00e8\u0016\u0001"+ + "\u0000\u0000\u0000\u00e9\u00ec\u00033\u0019\u0000\u00ea\u00ec\u00035\u001a"+ + "\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00eb\u00ea\u0001\u0000\u0000"+ + "\u0000\u00ec\u0018\u0001\u0000\u0000\u0000\u00ed\u00ee\u0005=\u0000\u0000"+ + "\u00ee\u001a\u0001\u0000\u0000\u0000\u00ef\u00f0\u0005+\u0000\u0000\u00f0"+ + "\u001c\u0001\u0000\u0000\u0000\u00f1\u00f2\u0005-\u0000\u0000\u00f2\u001e"+ + "\u0001\u0000\u0000\u0000\u00f3\u00f4\u0005*\u0000\u0000\u00f4 \u0001\u0000"+ + "\u0000\u0000\u00f5\u00f6\u0005%\u0000\u0000\u00f6\"\u0001\u0000\u0000"+ + "\u0000\u00f7\u00f8\u0005/\u0000\u0000\u00f8$\u0001\u0000\u0000\u0000\u00f9"+ + "\u00fa\u0005>\u0000\u0000\u00fa&\u0001\u0000\u0000\u0000\u00fb\u00fc\u0005"+ + "<\u0000\u0000\u00fc(\u0001\u0000\u0000\u0000\u00fd\u00fe\u0005>\u0000"+ + "\u0000\u00fe\u00ff\u0005=\u0000\u0000\u00ff*\u0001\u0000\u0000\u0000\u0100"+ + "\u0101\u0005<\u0000\u0000\u0101\u0102\u0005=\u0000\u0000\u0102,\u0001"+ + "\u0000\u0000\u0000\u0103\u0104\u0005=\u0000\u0000\u0104\u0105\u0005=\u0000"+ + "\u0000\u0105.\u0001\u0000\u0000\u0000\u0106\u0107\u0005!\u0000\u0000\u0107"+ + "\u0108\u0005=\u0000\u0000\u01080\u0001\u0000\u0000\u0000\u0109\u010a\u0005"+ + "!\u0000\u0000\u010a2\u0001\u0000\u0000\u0000\u010b\u010c\u0005&\u0000"+ + "\u0000\u010c\u010d\u0005&\u0000\u0000\u010d4\u0001\u0000\u0000\u0000\u010e"+ + "\u010f\u0005|\u0000\u0000\u010f\u0110\u0005|\u0000\u0000\u01106\u0001"+ + "\u0000\u0000\u0000\u0111\u0112\u0005.\u0000\u0000\u01128\u0001\u0000\u0000"+ + "\u0000\u0113\u0114\u0005(\u0000\u0000\u0114:\u0001\u0000\u0000\u0000\u0115"+ + "\u0116\u0005)\u0000\u0000\u0116<\u0001\u0000\u0000\u0000\u0117\u0118\u0005"+ + "{\u0000\u0000\u0118>\u0001\u0000\u0000\u0000\u0119\u011a\u0005}\u0000"+ + "\u0000\u011a@\u0001\u0000\u0000\u0000\u011b\u011c\u0005;\u0000\u0000\u011c"+ + "B\u0001\u0000\u0000\u0000\u011d\u011e\u0005,\u0000\u0000\u011eD\u0001"+ + "\u0000\u0000\u0000\u011f\u0120\u0005c\u0000\u0000\u0120\u0121\u0005l\u0000"+ + "\u0000\u0121\u0122\u0005a\u0000\u0000\u0122\u0123\u0005s\u0000\u0000\u0123"+ + "\u0124\u0005s\u0000\u0000\u0124F\u0001\u0000\u0000\u0000\u0125\u0126\u0005"+ + "t\u0000\u0000\u0126\u0127\u0005h\u0000\u0000\u0127\u0128\u0005i\u0000"+ + "\u0000\u0128\u0129\u0005s\u0000\u0000\u0129H\u0001\u0000\u0000\u0000\u012a"+ + "\u012b\u0005w\u0000\u0000\u012b\u012c\u0005h\u0000\u0000\u012c\u012d\u0005"+ + "i\u0000\u0000\u012d\u012e\u0005l\u0000\u0000\u012e\u012f\u0005e\u0000"+ + "\u0000\u012fJ\u0001\u0000\u0000\u0000\u0130\u0131\u0005i\u0000\u0000\u0131"+ + "\u0132\u0005f\u0000\u0000\u0132L\u0001\u0000\u0000\u0000\u0133\u0134\u0005"+ + "e\u0000\u0000\u0134\u0135\u0005l\u0000\u0000\u0135\u0136\u0005s\u0000"+ + "\u0000\u0136\u0137\u0005e\u0000\u0000\u0137N\u0001\u0000\u0000\u0000\u0138"+ + "\u0139\u0005f\u0000\u0000\u0139\u013a\u0005o\u0000\u0000\u013a\u013b\u0005"+ + "r\u0000\u0000\u013bP\u0001\u0000\u0000\u0000\u013c\u013d\u0005r\u0000"+ + "\u0000\u013d\u013e\u0005e\u0000\u0000\u013e\u013f\u0005t\u0000\u0000\u013f"+ + "\u0140\u0005u\u0000\u0000\u0140\u0141\u0005r\u0000\u0000\u0141\u0142\u0005"+ + "n\u0000\u0000\u0142R\u0001\u0000\u0000\u0000\u0143\u0144\u0005n\u0000"+ + "\u0000\u0144\u0145\u0005e\u0000\u0000\u0145\u0146\u0005w\u0000\u0000\u0146"+ + "T\u0001\u0000\u0000\u0000\u0147\u014b\u0005\'\u0000\u0000\u0148\u014a"+ + "\b\u0000\u0000\u0000\u0149\u0148\u0001\u0000\u0000\u0000\u014a\u014d\u0001"+ + "\u0000\u0000\u0000\u014b\u0149\u0001\u0000\u0000\u0000\u014b\u014c\u0001"+ + "\u0000\u0000\u0000\u014c\u014e\u0001\u0000\u0000\u0000\u014d\u014b\u0001"+ + "\u0000\u0000\u0000\u014e\u014f\u0005\'\u0000\u0000\u014fV\u0001\u0000"+ + "\u0000\u0000\u0150\u0152\u0003\u001d\u000e\u0000\u0151\u0150\u0001\u0000"+ + "\u0000\u0000\u0151\u0152\u0001\u0000\u0000\u0000\u0152\u0154\u0001\u0000"+ + "\u0000\u0000\u0153\u0155\u0003_/\u0000\u0154\u0153\u0001\u0000\u0000\u0000"+ + "\u0155\u0156\u0001\u0000\u0000\u0000\u0156\u0154\u0001\u0000\u0000\u0000"+ + "\u0156\u0157\u0001\u0000\u0000\u0000\u0157X\u0001\u0000\u0000\u0000\u0158"+ + "\u0159\u0005t\u0000\u0000\u0159\u015a\u0005r\u0000\u0000\u015a\u015b\u0005"+ + "u\u0000\u0000\u015b\u0162\u0005e\u0000\u0000\u015c\u015d\u0005f\u0000"+ + "\u0000\u015d\u015e\u0005a\u0000\u0000\u015e\u015f\u0005l\u0000\u0000\u015f"+ + "\u0160\u0005s\u0000\u0000\u0160\u0162\u0005e\u0000\u0000\u0161\u0158\u0001"+ + "\u0000\u0000\u0000\u0161\u015c\u0001\u0000\u0000\u0000\u0162Z\u0001\u0000"+ + "\u0000\u0000\u0163\u0164\u0005n\u0000\u0000\u0164\u0165\u0005u\u0000\u0000"+ + "\u0165\u0166\u0005l\u0000\u0000\u0166\u0167\u0005l\u0000\u0000\u0167\\"+ + "\u0001\u0000\u0000\u0000\u0168\u0169\u0007\u0001\u0000\u0000\u0169^\u0001"+ + "\u0000\u0000\u0000\u016a\u016b\u0007\u0002\u0000\u0000\u016b`\u0001\u0000"+ + "\u0000\u0000\u016c\u0170\u0003].\u0000\u016d\u0170\u0003_/\u0000\u016e"+ + "\u0170\u0007\u0003\u0000\u0000\u016f\u016c\u0001\u0000\u0000\u0000\u016f"+ + "\u016d\u0001\u0000\u0000\u0000\u016f\u016e\u0001\u0000\u0000\u0000\u0170"+ + "b\u0001\u0000\u0000\u0000\u0171\u0175\u0003].\u0000\u0172\u0174\u0003"+ + "a0\u0000\u0173\u0172\u0001\u0000\u0000\u0000\u0174\u0177\u0001\u0000\u0000"+ + "\u0000\u0175\u0173\u0001\u0000\u0000\u0000\u0175\u0176\u0001\u0000\u0000"+ + "\u0000\u0176d\u0001\u0000\u0000\u0000\u0177\u0175\u0001\u0000\u0000\u0000"+ + "\u0178\u017a\u0007\u0004\u0000\u0000\u0179\u0178\u0001\u0000\u0000\u0000"+ + "\u017a\u017b\u0001\u0000\u0000\u0000\u017b\u0179\u0001\u0000\u0000\u0000"+ + "\u017b\u017c\u0001\u0000\u0000\u0000\u017c\u017d\u0001\u0000\u0000\u0000"+ + "\u017d\u017e\u00062\u0000\u0000\u017ef\u0001\u0000\u0000\u0000\u017f\u0180"+ + "\u0005/\u0000\u0000\u0180\u0181\u0005/\u0000\u0000\u0181\u0185\u0001\u0000"+ + "\u0000\u0000\u0182\u0184\b\u0000\u0000\u0000\u0183\u0182\u0001\u0000\u0000"+ + "\u0000\u0184\u0187\u0001\u0000\u0000\u0000\u0185\u0183\u0001\u0000\u0000"+ + "\u0000\u0185\u0186\u0001\u0000\u0000\u0000\u0186\u0188\u0001\u0000\u0000"+ + "\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0188\u0189\u00063\u0000\u0000"+ + "\u0189h\u0001\u0000\u0000\u0000\u018a\u018b\u0005/\u0000\u0000\u018b\u018c"+ + "\u0005*\u0000\u0000\u018c\u0190\u0001\u0000\u0000\u0000\u018d\u018f\t"+ + "\u0000\u0000\u0000\u018e\u018d\u0001\u0000\u0000\u0000\u018f\u0192\u0001"+ + "\u0000\u0000\u0000\u0190\u0191\u0001\u0000\u0000\u0000\u0190\u018e\u0001"+ + "\u0000\u0000\u0000\u0191\u0193\u0001\u0000\u0000\u0000\u0192\u0190\u0001"+ + "\u0000\u0000\u0000\u0193\u0194\u0005*\u0000\u0000\u0194\u0195\u0005/\u0000"+ + "\u0000\u0195\u0196\u0001\u0000\u0000\u0000\u0196\u0197\u00064\u0000\u0000"+ + "\u0197j\u0001\u0000\u0000\u0000\u000f\u0000\u00af\u00db\u00df\u00e7\u00eb"+ + "\u014b\u0151\u0156\u0161\u016f\u0175\u017b\u0185\u0190\u0001\u0006\u0000"+ + "\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/parser/generated/SimpleJavaLexer.tokens b/src/main/java/parser/generated/SimpleJavaLexer.tokens index 71246c8..bed7437 100644 --- a/src/main/java/parser/generated/SimpleJavaLexer.tokens +++ b/src/main/java/parser/generated/SimpleJavaLexer.tokens @@ -35,20 +35,19 @@ Comma=34 Class=35 This=36 While=37 -Do=38 -If=39 -Else=40 -For=41 -Return=42 -New=43 -CharValue=44 -IntValue=45 -BooleanValue=46 -NullValue=47 -Identifier=48 -WS=49 -InlineComment=50 -MultilineComment=51 +If=38 +Else=39 +For=40 +Return=41 +New=42 +CharValue=43 +IntValue=44 +BooleanValue=45 +NullValue=46 +Identifier=47 +WS=48 +InlineComment=49 +MultilineComment=50 '++'=1 '--'=2 'void'=3 @@ -81,10 +80,9 @@ MultilineComment=51 'class'=35 'this'=36 'while'=37 -'do'=38 -'if'=39 -'else'=40 -'for'=41 -'return'=42 -'new'=43 -'null'=47 +'if'=38 +'else'=39 +'for'=40 +'return'=41 +'new'=42 +'null'=46 diff --git a/src/main/java/parser/generated/SimpleJavaListener.java b/src/main/java/parser/generated/SimpleJavaListener.java index 580bfe1..7b22466 100644 --- a/src/main/java/parser/generated/SimpleJavaListener.java +++ b/src/main/java/parser/generated/SimpleJavaListener.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.tree.ParseTreeListener; @@ -108,15 +108,15 @@ public interface SimpleJavaListener extends ParseTreeListener { */ void exitStatement(SimpleJavaParser.StatementContext ctx); /** - * Enter a parse tree produced by {@link SimpleJavaParser#blockStatement}. + * Enter a parse tree produced by {@link SimpleJavaParser#block}. * @param ctx the parse tree */ - void enterBlockStatement(SimpleJavaParser.BlockStatementContext ctx); + void enterBlock(SimpleJavaParser.BlockContext ctx); /** - * Exit a parse tree produced by {@link SimpleJavaParser#blockStatement}. + * Exit a parse tree produced by {@link SimpleJavaParser#block}. * @param ctx the parse tree */ - void exitBlockStatement(SimpleJavaParser.BlockStatementContext ctx); + void exitBlock(SimpleJavaParser.BlockContext ctx); /** * Enter a parse tree produced by {@link SimpleJavaParser#returnStatement}. * @param ctx the parse tree @@ -147,16 +147,6 @@ public interface SimpleJavaListener extends ParseTreeListener { * @param ctx the parse tree */ void exitWhileStatement(SimpleJavaParser.WhileStatementContext ctx); - /** - * Enter a parse tree produced by {@link SimpleJavaParser#doWhileStatement}. - * @param ctx the parse tree - */ - void enterDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx); - /** - * Exit a parse tree produced by {@link SimpleJavaParser#doWhileStatement}. - * @param ctx the parse tree - */ - void exitDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx); /** * Enter a parse tree produced by {@link SimpleJavaParser#forStatement}. * @param ctx the parse tree @@ -187,16 +177,6 @@ public interface SimpleJavaListener extends ParseTreeListener { * @param ctx the parse tree */ void exitIfStatement(SimpleJavaParser.IfStatementContext ctx); - /** - * Enter a parse tree produced by {@link SimpleJavaParser#elseIfStatement}. - * @param ctx the parse tree - */ - void enterElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx); - /** - * Exit a parse tree produced by {@link SimpleJavaParser#elseIfStatement}. - * @param ctx the parse tree - */ - void exitElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx); /** * Enter a parse tree produced by {@link SimpleJavaParser#elseStatement}. * @param ctx the parse tree diff --git a/src/main/java/parser/generated/SimpleJavaParser.java b/src/main/java/parser/generated/SimpleJavaParser.java index 3a80a6a..0c2fa56 100644 --- a/src/main/java/parser/generated/SimpleJavaParser.java +++ b/src/main/java/parser/generated/SimpleJavaParser.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -23,34 +23,32 @@ public class SimpleJavaParser extends Parser { Less=20, GreaterEqual=21, LessEqual=22, Equal=23, NotEqual=24, Not=25, And=26, Or=27, Dot=28, OpenRoundBracket=29, ClosedRoundBracket=30, OpenCurlyBracket=31, ClosedCurlyBracket=32, Semicolon=33, Comma=34, Class=35, This=36, While=37, - Do=38, If=39, Else=40, For=41, Return=42, New=43, CharValue=44, IntValue=45, - BooleanValue=46, NullValue=47, Identifier=48, WS=49, InlineComment=50, - MultilineComment=51; + If=38, Else=39, For=40, Return=41, New=42, CharValue=43, IntValue=44, + BooleanValue=45, NullValue=46, Identifier=47, WS=48, InlineComment=49, + MultilineComment=50; public static final int RULE_program = 0, RULE_classDeclaration = 1, RULE_memberDeclaration = 2, RULE_constructorDeclaration = 3, RULE_fieldDeclaration = 4, RULE_methodDeclaration = 5, RULE_parameterList = 6, RULE_parameter = 7, RULE_argumentList = 8, RULE_statement = 9, - RULE_blockStatement = 10, RULE_returnStatement = 11, RULE_localVariableDeclaration = 12, - RULE_whileStatement = 13, RULE_doWhileStatement = 14, RULE_forStatement = 15, - RULE_ifElseStatement = 16, RULE_ifStatement = 17, RULE_elseIfStatement = 18, - RULE_elseStatement = 19, RULE_statementExpression = 20, RULE_assign = 21, - RULE_newDeclaration = 22, RULE_expression = 23, RULE_unaryExpression = 24, - RULE_notExpression = 25, RULE_crementExpression = 26, RULE_incrementExpression = 27, - RULE_prefixIncrementExpression = 28, RULE_suffixIncrementExpression = 29, - RULE_decrementExpression = 30, RULE_prefixDecrementExpression = 31, RULE_suffixDecrementExpression = 32, - RULE_assignableExpression = 33, RULE_memberAccess = 34, RULE_binaryExpression = 35, - RULE_calculationExpression = 36, RULE_dotExpression = 37, RULE_dotSubtractionExpression = 38, - RULE_nonCalculationExpression = 39, RULE_methodCall = 40, RULE_target = 41, - RULE_chainedMethod = 42, RULE_type = 43, RULE_value = 44, RULE_nonCalculationOperator = 45; + RULE_block = 10, RULE_returnStatement = 11, RULE_localVariableDeclaration = 12, + RULE_whileStatement = 13, RULE_forStatement = 14, RULE_ifElseStatement = 15, + RULE_ifStatement = 16, RULE_elseStatement = 17, RULE_statementExpression = 18, + RULE_assign = 19, RULE_newDeclaration = 20, RULE_expression = 21, RULE_unaryExpression = 22, + RULE_notExpression = 23, RULE_crementExpression = 24, RULE_incrementExpression = 25, + RULE_prefixIncrementExpression = 26, RULE_suffixIncrementExpression = 27, + RULE_decrementExpression = 28, RULE_prefixDecrementExpression = 29, RULE_suffixDecrementExpression = 30, + RULE_assignableExpression = 31, RULE_memberAccess = 32, RULE_binaryExpression = 33, + RULE_calculationExpression = 34, RULE_dotExpression = 35, RULE_dotSubtractionExpression = 36, + RULE_nonCalculationExpression = 37, RULE_methodCall = 38, RULE_target = 39, + RULE_chainedMethod = 40, RULE_type = 41, RULE_value = 42, RULE_nonCalculationOperator = 43; private static String[] makeRuleNames() { return new String[] { "program", "classDeclaration", "memberDeclaration", "constructorDeclaration", "fieldDeclaration", "methodDeclaration", "parameterList", "parameter", - "argumentList", "statement", "blockStatement", "returnStatement", "localVariableDeclaration", - "whileStatement", "doWhileStatement", "forStatement", "ifElseStatement", - "ifStatement", "elseIfStatement", "elseStatement", "statementExpression", - "assign", "newDeclaration", "expression", "unaryExpression", "notExpression", - "crementExpression", "incrementExpression", "prefixIncrementExpression", + "argumentList", "statement", "block", "returnStatement", "localVariableDeclaration", + "whileStatement", "forStatement", "ifElseStatement", "ifStatement", "elseStatement", + "statementExpression", "assign", "newDeclaration", "expression", "unaryExpression", + "notExpression", "crementExpression", "incrementExpression", "prefixIncrementExpression", "suffixIncrementExpression", "decrementExpression", "prefixDecrementExpression", "suffixDecrementExpression", "assignableExpression", "memberAccess", "binaryExpression", "calculationExpression", "dotExpression", "dotSubtractionExpression", @@ -66,8 +64,8 @@ public class SimpleJavaParser extends Parser { "'public static void main(String[] args)'", null, null, null, null, "'='", "'+'", "'-'", "'*'", "'%'", "'/'", "'>'", "'<'", "'>='", "'<='", "'=='", "'!='", "'!'", "'&&'", "'||'", "'.'", "'('", "')'", "'{'", "'}'", "';'", - "','", "'class'", "'this'", "'while'", "'do'", "'if'", "'else'", "'for'", - "'return'", "'new'", null, null, null, "'null'" + "','", "'class'", "'this'", "'while'", "'if'", "'else'", "'for'", "'return'", + "'new'", null, null, null, "'null'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -79,9 +77,8 @@ public class SimpleJavaParser extends Parser { "Greater", "Less", "GreaterEqual", "LessEqual", "Equal", "NotEqual", "Not", "And", "Or", "Dot", "OpenRoundBracket", "ClosedRoundBracket", "OpenCurlyBracket", "ClosedCurlyBracket", "Semicolon", "Comma", "Class", - "This", "While", "Do", "If", "Else", "For", "Return", "New", "CharValue", - "IntValue", "BooleanValue", "NullValue", "Identifier", "WS", "InlineComment", - "MultilineComment" + "This", "While", "If", "Else", "For", "Return", "New", "CharValue", "IntValue", + "BooleanValue", "NullValue", "Identifier", "WS", "InlineComment", "MultilineComment" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -169,17 +166,17 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(93); + setState(89); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(92); + setState(88); classDeclaration(); } } - setState(95); + setState(91); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==AccessModifier || _la==Class ); @@ -235,37 +232,37 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(98); + setState(94); _errHandler.sync(this); _la = _input.LA(1); if (_la==AccessModifier) { { - setState(97); + setState(93); match(AccessModifier); } } - setState(100); + setState(96); match(Class); - setState(101); + setState(97); match(Identifier); - setState(102); + setState(98); match(OpenCurlyBracket); - setState(106); + setState(102); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 281474976711160L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 140737488355832L) != 0)) { { { - setState(103); + setState(99); memberDeclaration(); } } - setState(108); + setState(104); _errHandler.sync(this); _la = _input.LA(1); } - setState(109); + setState(105); match(ClosedCurlyBracket); } } @@ -314,27 +311,27 @@ public class SimpleJavaParser extends Parser { MemberDeclarationContext _localctx = new MemberDeclarationContext(_ctx, getState()); enterRule(_localctx, 4, RULE_memberDeclaration); try { - setState(114); + setState(110); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(111); + setState(107); constructorDeclaration(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(112); + setState(108); fieldDeclaration(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(113); + setState(109); methodDeclaration(); } break; @@ -356,8 +353,8 @@ public class SimpleJavaParser extends Parser { public TerminalNode Identifier() { return getToken(SimpleJavaParser.Identifier, 0); } public TerminalNode OpenRoundBracket() { return getToken(SimpleJavaParser.OpenRoundBracket, 0); } public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public TerminalNode AccessModifier() { return getToken(SimpleJavaParser.AccessModifier, 0); } public ParameterListContext parameterList() { @@ -389,34 +386,34 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(117); + setState(113); _errHandler.sync(this); _la = _input.LA(1); if (_la==AccessModifier) { { - setState(116); + setState(112); match(AccessModifier); } } - setState(119); + setState(115); match(Identifier); - setState(120); + setState(116); match(OpenRoundBracket); - setState(122); + setState(118); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 281474976710768L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 140737488355440L) != 0)) { { - setState(121); + setState(117); parameterList(); } } - setState(124); + setState(120); match(ClosedRoundBracket); - setState(125); - blockStatement(); + setState(121); + block(); } } catch (RecognitionException re) { @@ -464,21 +461,21 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(128); + setState(124); _errHandler.sync(this); _la = _input.LA(1); if (_la==AccessModifier) { { - setState(127); + setState(123); match(AccessModifier); } } - setState(130); + setState(126); type(); - setState(131); + setState(127); match(Identifier); - setState(132); + setState(128); match(Semicolon); } } @@ -496,8 +493,8 @@ public class SimpleJavaParser extends Parser { @SuppressWarnings("CheckReturnValue") public static class MethodDeclarationContext extends ParserRuleContext { public TerminalNode MainMethodDeclaration() { return getToken(SimpleJavaParser.MainMethodDeclaration, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public TerminalNode Identifier() { return getToken(SimpleJavaParser.Identifier, 0); } public TerminalNode OpenRoundBracket() { return getToken(SimpleJavaParser.OpenRoundBracket, 0); } @@ -534,16 +531,16 @@ public class SimpleJavaParser extends Parser { enterRule(_localctx, 10, RULE_methodDeclaration); int _la; try { - setState(150); + setState(146); _errHandler.sync(this); switch (_input.LA(1)) { case MainMethodDeclaration: enterOuterAlt(_localctx, 1); { - setState(134); + setState(130); match(MainMethodDeclaration); - setState(135); - blockStatement(); + setState(131); + block(); } break; case Void: @@ -554,17 +551,17 @@ public class SimpleJavaParser extends Parser { case Identifier: enterOuterAlt(_localctx, 2); { - setState(137); + setState(133); _errHandler.sync(this); _la = _input.LA(1); if (_la==AccessModifier) { { - setState(136); + setState(132); match(AccessModifier); } } - setState(141); + setState(137); _errHandler.sync(this); switch (_input.LA(1)) { case Boolean: @@ -572,37 +569,37 @@ public class SimpleJavaParser extends Parser { case Int: case Identifier: { - setState(139); + setState(135); type(); } break; case Void: { - setState(140); + setState(136); match(Void); } break; default: throw new NoViableAltException(this); } - setState(143); + setState(139); match(Identifier); - setState(144); + setState(140); match(OpenRoundBracket); - setState(146); + setState(142); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 281474976710768L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 140737488355440L) != 0)) { { - setState(145); + setState(141); parameterList(); } } - setState(148); + setState(144); match(ClosedRoundBracket); - setState(149); - blockStatement(); + setState(145); + block(); } break; default: @@ -658,21 +655,21 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(152); + setState(148); parameter(); - setState(157); + setState(153); _errHandler.sync(this); _la = _input.LA(1); while (_la==Comma) { { { - setState(153); + setState(149); match(Comma); - setState(154); + setState(150); parameter(); } } - setState(159); + setState(155); _errHandler.sync(this); _la = _input.LA(1); } @@ -720,9 +717,9 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(160); + setState(156); type(); - setState(161); + setState(157); match(Identifier); } } @@ -775,26 +772,26 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(171); + setState(167); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 554223150301190L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 277146220101638L) != 0)) { { - setState(163); + setState(159); expression(); - setState(168); + setState(164); _errHandler.sync(this); _la = _input.LA(1); while (_la==Comma) { { { - setState(164); + setState(160); match(Comma); - setState(165); + setState(161); expression(); } } - setState(170); + setState(166); _errHandler.sync(this); _la = _input.LA(1); } @@ -823,15 +820,12 @@ public class SimpleJavaParser extends Parser { public LocalVariableDeclarationContext localVariableDeclaration() { return getRuleContext(LocalVariableDeclarationContext.class,0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public WhileStatementContext whileStatement() { return getRuleContext(WhileStatementContext.class,0); } - public DoWhileStatementContext doWhileStatement() { - return getRuleContext(DoWhileStatementContext.class,0); - } public ForStatementContext forStatement() { return getRuleContext(ForStatementContext.class,0); } @@ -864,68 +858,61 @@ public class SimpleJavaParser extends Parser { StatementContext _localctx = new StatementContext(_ctx, getState()); enterRule(_localctx, 18, RULE_statement); try { - setState(187); + setState(182); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(173); + setState(169); returnStatement(); - setState(174); + setState(170); match(Semicolon); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(176); + setState(172); localVariableDeclaration(); - setState(177); + setState(173); match(Semicolon); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(179); - blockStatement(); + setState(175); + block(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(180); + setState(176); whileStatement(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(181); - doWhileStatement(); + setState(177); + forStatement(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(182); - forStatement(); + setState(178); + ifElseStatement(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(183); - ifElseStatement(); - } - break; - case 8: - enterOuterAlt(_localctx, 8); - { - setState(184); + setState(179); statementExpression(); - setState(185); + setState(180); match(Semicolon); } break; @@ -943,7 +930,7 @@ public class SimpleJavaParser extends Parser { } @SuppressWarnings("CheckReturnValue") - public static class BlockStatementContext extends ParserRuleContext { + public static class BlockContext extends ParserRuleContext { public TerminalNode OpenCurlyBracket() { return getToken(SimpleJavaParser.OpenCurlyBracket, 0); } public TerminalNode ClosedCurlyBracket() { return getToken(SimpleJavaParser.ClosedCurlyBracket, 0); } public List statement() { @@ -952,49 +939,49 @@ public class SimpleJavaParser extends Parser { public StatementContext statement(int i) { return getRuleContext(StatementContext.class,i); } - public BlockStatementContext(ParserRuleContext parent, int invokingState) { + public BlockContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_blockStatement; } + @Override public int getRuleIndex() { return RULE_block; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).enterBlockStatement(this); + if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).enterBlock(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).exitBlockStatement(this); + if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).exitBlock(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof SimpleJavaVisitor ) return ((SimpleJavaVisitor)visitor).visitBlockStatement(this); + if ( visitor instanceof SimpleJavaVisitor ) return ((SimpleJavaVisitor)visitor).visitBlock(this); else return visitor.visitChildren(this); } } - public final BlockStatementContext blockStatement() throws RecognitionException { - BlockStatementContext _localctx = new BlockStatementContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_blockStatement); + public final BlockContext block() throws RecognitionException { + BlockContext _localctx = new BlockContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_block); int _la; try { enterOuterAlt(_localctx, 1); { - setState(189); + setState(184); match(OpenCurlyBracket); - setState(193); + setState(188); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 297901079134326L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 148917253570678L) != 0)) { { { - setState(190); + setState(185); statement(); } } - setState(195); + setState(190); _errHandler.sync(this); _la = _input.LA(1); } - setState(196); + setState(191); match(ClosedCurlyBracket); } } @@ -1041,14 +1028,14 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(198); + setState(193); match(Return); - setState(200); + setState(195); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 554223150301190L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 277146220101638L) != 0)) { { - setState(199); + setState(194); expression(); } } @@ -1102,18 +1089,18 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(202); + setState(197); type(); - setState(203); + setState(198); match(Identifier); - setState(206); + setState(201); _errHandler.sync(this); _la = _input.LA(1); if (_la==Assign) { { - setState(204); + setState(199); match(Assign); - setState(205); + setState(200); expression(); } } @@ -1139,8 +1126,8 @@ public class SimpleJavaParser extends Parser { return getRuleContext(ExpressionContext.class,0); } public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public WhileStatementContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -1167,81 +1154,16 @@ public class SimpleJavaParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(208); + setState(203); match(While); - setState(209); + setState(204); match(OpenRoundBracket); - setState(210); + setState(205); expression(); - setState(211); + setState(206); match(ClosedRoundBracket); - setState(212); - blockStatement(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class DoWhileStatementContext extends ParserRuleContext { - public TerminalNode Do() { return getToken(SimpleJavaParser.Do, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); - } - public TerminalNode While() { return getToken(SimpleJavaParser.While, 0); } - public TerminalNode OpenRoundBracket() { return getToken(SimpleJavaParser.OpenRoundBracket, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public TerminalNode Semicolon() { return getToken(SimpleJavaParser.Semicolon, 0); } - public DoWhileStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_doWhileStatement; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).enterDoWhileStatement(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).exitDoWhileStatement(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof SimpleJavaVisitor ) return ((SimpleJavaVisitor)visitor).visitDoWhileStatement(this); - else return visitor.visitChildren(this); - } - } - - public final DoWhileStatementContext doWhileStatement() throws RecognitionException { - DoWhileStatementContext _localctx = new DoWhileStatementContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_doWhileStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(214); - match(Do); - setState(215); - blockStatement(); - setState(216); - match(While); - setState(217); - match(OpenRoundBracket); - setState(218); - expression(); - setState(219); - match(ClosedRoundBracket); - setState(220); - match(Semicolon); + setState(207); + block(); } } catch (RecognitionException re) { @@ -1264,8 +1186,8 @@ public class SimpleJavaParser extends Parser { return getToken(SimpleJavaParser.Semicolon, i); } public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public List statementExpression() { return getRuleContexts(StatementExpressionContext.class); @@ -1300,59 +1222,59 @@ public class SimpleJavaParser extends Parser { public final ForStatementContext forStatement() throws RecognitionException { ForStatementContext _localctx = new ForStatementContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_forStatement); + enterRule(_localctx, 28, RULE_forStatement); int _la; try { enterOuterAlt(_localctx, 1); { - setState(222); + setState(209); match(For); - setState(223); + setState(210); match(OpenRoundBracket); - setState(226); + setState(213); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: { - setState(224); + setState(211); statementExpression(); } break; case 2: { - setState(225); + setState(212); localVariableDeclaration(); } break; } - setState(228); + setState(215); match(Semicolon); - setState(230); + setState(217); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 554223150301190L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 277146220101638L) != 0)) { { - setState(229); + setState(216); expression(); } } - setState(232); + setState(219); match(Semicolon); - setState(234); + setState(221); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 290339789209606L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 145204254343174L) != 0)) { { - setState(233); + setState(220); statementExpression(); } } - setState(236); + setState(223); match(ClosedRoundBracket); - setState(237); - blockStatement(); + setState(224); + block(); } } catch (RecognitionException re) { @@ -1371,14 +1293,11 @@ public class SimpleJavaParser extends Parser { public IfStatementContext ifStatement() { return getRuleContext(IfStatementContext.class,0); } - public List elseIfStatement() { - return getRuleContexts(ElseIfStatementContext.class); + public List elseStatement() { + return getRuleContexts(ElseStatementContext.class); } - public ElseIfStatementContext elseIfStatement(int i) { - return getRuleContext(ElseIfStatementContext.class,i); - } - public ElseStatementContext elseStatement() { - return getRuleContext(ElseStatementContext.class,0); + public ElseStatementContext elseStatement(int i) { + return getRuleContext(ElseStatementContext.class,i); } public IfElseStatementContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -1401,40 +1320,27 @@ public class SimpleJavaParser extends Parser { public final IfElseStatementContext ifElseStatement() throws RecognitionException { IfElseStatementContext _localctx = new IfElseStatementContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_ifElseStatement); + enterRule(_localctx, 30, RULE_ifElseStatement); int _la; try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(239); + setState(226); ifStatement(); - setState(243); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,21,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(240); - elseIfStatement(); - } - } - } - setState(245); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,21,_ctx); - } - setState(247); + setState(230); _errHandler.sync(this); _la = _input.LA(1); - if (_la==Else) { + while (_la==Else) { { - setState(246); + { + setState(227); elseStatement(); } + } + setState(232); + _errHandler.sync(this); + _la = _input.LA(1); } - } } catch (RecognitionException re) { @@ -1456,8 +1362,8 @@ public class SimpleJavaParser extends Parser { return getRuleContext(ExpressionContext.class,0); } public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public IfStatementContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -1480,82 +1386,20 @@ public class SimpleJavaParser extends Parser { public final IfStatementContext ifStatement() throws RecognitionException { IfStatementContext _localctx = new IfStatementContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_ifStatement); + enterRule(_localctx, 32, RULE_ifStatement); try { enterOuterAlt(_localctx, 1); { - setState(249); + setState(233); match(If); - setState(250); + setState(234); match(OpenRoundBracket); - setState(251); + setState(235); expression(); - setState(252); + setState(236); match(ClosedRoundBracket); - setState(253); - blockStatement(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class ElseIfStatementContext extends ParserRuleContext { - public TerminalNode Else() { return getToken(SimpleJavaParser.Else, 0); } - public TerminalNode If() { return getToken(SimpleJavaParser.If, 0); } - public TerminalNode OpenRoundBracket() { return getToken(SimpleJavaParser.OpenRoundBracket, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public TerminalNode ClosedRoundBracket() { return getToken(SimpleJavaParser.ClosedRoundBracket, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); - } - public ElseIfStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_elseIfStatement; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).enterElseIfStatement(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof SimpleJavaListener ) ((SimpleJavaListener)listener).exitElseIfStatement(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof SimpleJavaVisitor ) return ((SimpleJavaVisitor)visitor).visitElseIfStatement(this); - else return visitor.visitChildren(this); - } - } - - public final ElseIfStatementContext elseIfStatement() throws RecognitionException { - ElseIfStatementContext _localctx = new ElseIfStatementContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_elseIfStatement); - try { - enterOuterAlt(_localctx, 1); - { - setState(255); - match(Else); - setState(256); - match(If); - setState(257); - match(OpenRoundBracket); - setState(258); - expression(); - setState(259); - match(ClosedRoundBracket); - setState(260); - blockStatement(); + setState(237); + block(); } } catch (RecognitionException re) { @@ -1572,8 +1416,8 @@ public class SimpleJavaParser extends Parser { @SuppressWarnings("CheckReturnValue") public static class ElseStatementContext extends ParserRuleContext { public TerminalNode Else() { return getToken(SimpleJavaParser.Else, 0); } - public BlockStatementContext blockStatement() { - return getRuleContext(BlockStatementContext.class,0); + public BlockContext block() { + return getRuleContext(BlockContext.class,0); } public ElseStatementContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -1596,14 +1440,14 @@ public class SimpleJavaParser extends Parser { public final ElseStatementContext elseStatement() throws RecognitionException { ElseStatementContext _localctx = new ElseStatementContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_elseStatement); + enterRule(_localctx, 34, RULE_elseStatement); try { enterOuterAlt(_localctx, 1); { - setState(262); + setState(239); match(Else); - setState(263); - blockStatement(); + setState(240); + block(); } } catch (RecognitionException re) { @@ -1652,36 +1496,36 @@ public class SimpleJavaParser extends Parser { public final StatementExpressionContext statementExpression() throws RecognitionException { StatementExpressionContext _localctx = new StatementExpressionContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_statementExpression); + enterRule(_localctx, 36, RULE_statementExpression); try { - setState(269); + setState(246); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(265); + setState(242); assign(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(266); + setState(243); newDeclaration(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(267); + setState(244); methodCall(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(268); + setState(245); crementExpression(); } break; @@ -1728,15 +1572,15 @@ public class SimpleJavaParser extends Parser { public final AssignContext assign() throws RecognitionException { AssignContext _localctx = new AssignContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_assign); + enterRule(_localctx, 38, RULE_assign); try { enterOuterAlt(_localctx, 1); { - setState(271); + setState(248); assignableExpression(); - setState(272); + setState(249); match(Assign); - setState(273); + setState(250); expression(); } } @@ -1781,19 +1625,19 @@ public class SimpleJavaParser extends Parser { public final NewDeclarationContext newDeclaration() throws RecognitionException { NewDeclarationContext _localctx = new NewDeclarationContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_newDeclaration); + enterRule(_localctx, 40, RULE_newDeclaration); try { enterOuterAlt(_localctx, 1); { - setState(275); + setState(252); match(New); - setState(276); + setState(253); match(Identifier); - setState(277); + setState(254); match(OpenRoundBracket); - setState(278); + setState(255); argumentList(); - setState(279); + setState(256); match(ClosedRoundBracket); } } @@ -1837,22 +1681,22 @@ public class SimpleJavaParser extends Parser { public final ExpressionContext expression() throws RecognitionException { ExpressionContext _localctx = new ExpressionContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_expression); + enterRule(_localctx, 42, RULE_expression); try { - setState(283); + setState(260); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(281); + setState(258); unaryExpression(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(282); + setState(259); binaryExpression(); } break; @@ -1911,61 +1755,61 @@ public class SimpleJavaParser extends Parser { public final UnaryExpressionContext unaryExpression() throws RecognitionException { UnaryExpressionContext _localctx = new UnaryExpressionContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_unaryExpression); + enterRule(_localctx, 44, RULE_unaryExpression); try { - setState(295); + setState(272); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(285); + setState(262); match(This); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(286); + setState(263); match(Identifier); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(287); + setState(264); memberAccess(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(288); + setState(265); value(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(289); + setState(266); notExpression(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(290); + setState(267); statementExpression(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(291); + setState(268); match(OpenRoundBracket); - setState(292); + setState(269); expression(); - setState(293); + setState(270); match(ClosedRoundBracket); } break; @@ -2009,13 +1853,13 @@ public class SimpleJavaParser extends Parser { public final NotExpressionContext notExpression() throws RecognitionException { NotExpressionContext _localctx = new NotExpressionContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_notExpression); + enterRule(_localctx, 46, RULE_notExpression); try { enterOuterAlt(_localctx, 1); { - setState(297); + setState(274); match(Not); - setState(298); + setState(275); expression(); } } @@ -2059,22 +1903,22 @@ public class SimpleJavaParser extends Parser { public final CrementExpressionContext crementExpression() throws RecognitionException { CrementExpressionContext _localctx = new CrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_crementExpression); + enterRule(_localctx, 48, RULE_crementExpression); try { - setState(302); + setState(279); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(300); + setState(277); incrementExpression(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(301); + setState(278); decrementExpression(); } break; @@ -2120,15 +1964,15 @@ public class SimpleJavaParser extends Parser { public final IncrementExpressionContext incrementExpression() throws RecognitionException { IncrementExpressionContext _localctx = new IncrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_incrementExpression); + enterRule(_localctx, 50, RULE_incrementExpression); try { - setState(306); + setState(283); _errHandler.sync(this); switch (_input.LA(1)) { case T__0: enterOuterAlt(_localctx, 1); { - setState(304); + setState(281); prefixIncrementExpression(); } break; @@ -2136,7 +1980,7 @@ public class SimpleJavaParser extends Parser { case Identifier: enterOuterAlt(_localctx, 2); { - setState(305); + setState(282); suffixIncrementExpression(); } break; @@ -2181,13 +2025,13 @@ public class SimpleJavaParser extends Parser { public final PrefixIncrementExpressionContext prefixIncrementExpression() throws RecognitionException { PrefixIncrementExpressionContext _localctx = new PrefixIncrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_prefixIncrementExpression); + enterRule(_localctx, 52, RULE_prefixIncrementExpression); try { enterOuterAlt(_localctx, 1); { - setState(308); + setState(285); match(T__0); - setState(309); + setState(286); assignableExpression(); } } @@ -2228,13 +2072,13 @@ public class SimpleJavaParser extends Parser { public final SuffixIncrementExpressionContext suffixIncrementExpression() throws RecognitionException { SuffixIncrementExpressionContext _localctx = new SuffixIncrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_suffixIncrementExpression); + enterRule(_localctx, 54, RULE_suffixIncrementExpression); try { enterOuterAlt(_localctx, 1); { - setState(311); + setState(288); assignableExpression(); - setState(312); + setState(289); match(T__0); } } @@ -2278,15 +2122,15 @@ public class SimpleJavaParser extends Parser { public final DecrementExpressionContext decrementExpression() throws RecognitionException { DecrementExpressionContext _localctx = new DecrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_decrementExpression); + enterRule(_localctx, 56, RULE_decrementExpression); try { - setState(316); + setState(293); _errHandler.sync(this); switch (_input.LA(1)) { case T__1: enterOuterAlt(_localctx, 1); { - setState(314); + setState(291); prefixDecrementExpression(); } break; @@ -2294,7 +2138,7 @@ public class SimpleJavaParser extends Parser { case Identifier: enterOuterAlt(_localctx, 2); { - setState(315); + setState(292); suffixDecrementExpression(); } break; @@ -2339,13 +2183,13 @@ public class SimpleJavaParser extends Parser { public final PrefixDecrementExpressionContext prefixDecrementExpression() throws RecognitionException { PrefixDecrementExpressionContext _localctx = new PrefixDecrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_prefixDecrementExpression); + enterRule(_localctx, 58, RULE_prefixDecrementExpression); try { enterOuterAlt(_localctx, 1); { - setState(318); + setState(295); match(T__1); - setState(319); + setState(296); assignableExpression(); } } @@ -2386,13 +2230,13 @@ public class SimpleJavaParser extends Parser { public final SuffixDecrementExpressionContext suffixDecrementExpression() throws RecognitionException { SuffixDecrementExpressionContext _localctx = new SuffixDecrementExpressionContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_suffixDecrementExpression); + enterRule(_localctx, 60, RULE_suffixDecrementExpression); try { enterOuterAlt(_localctx, 1); { - setState(321); + setState(298); assignableExpression(); - setState(322); + setState(299); match(T__1); } } @@ -2434,22 +2278,22 @@ public class SimpleJavaParser extends Parser { public final AssignableExpressionContext assignableExpression() throws RecognitionException { AssignableExpressionContext _localctx = new AssignableExpressionContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_assignableExpression); + enterRule(_localctx, 62, RULE_assignableExpression); try { - setState(326); + setState(303); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(324); + setState(301); match(Identifier); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(325); + setState(302); memberAccess(); } break; @@ -2498,40 +2342,40 @@ public class SimpleJavaParser extends Parser { public final MemberAccessContext memberAccess() throws RecognitionException { MemberAccessContext _localctx = new MemberAccessContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_memberAccess); + enterRule(_localctx, 64, RULE_memberAccess); int _la; try { int _alt; - setState(342); + setState(319); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(328); + setState(305); match(This); - setState(329); + setState(306); match(Dot); - setState(330); + setState(307); match(Identifier); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(333); + setState(310); _errHandler.sync(this); _la = _input.LA(1); if (_la==This) { { - setState(331); + setState(308); match(This); - setState(332); + setState(309); match(Dot); } } - setState(337); + setState(314); _errHandler.sync(this); _alt = 1; do { @@ -2539,9 +2383,9 @@ public class SimpleJavaParser extends Parser { case 1: { { - setState(335); + setState(312); match(Identifier); - setState(336); + setState(313); match(Dot); } } @@ -2549,11 +2393,11 @@ public class SimpleJavaParser extends Parser { default: throw new NoViableAltException(this); } - setState(339); + setState(316); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,31,_ctx); + _alt = getInterpreter().adaptivePredict(_input,30,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); - setState(341); + setState(318); match(Identifier); } break; @@ -2599,22 +2443,22 @@ public class SimpleJavaParser extends Parser { public final BinaryExpressionContext binaryExpression() throws RecognitionException { BinaryExpressionContext _localctx = new BinaryExpressionContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_binaryExpression); + enterRule(_localctx, 66, RULE_binaryExpression); try { - setState(346); + setState(323); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(344); + setState(321); calculationExpression(0); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(345); + setState(322); nonCalculationExpression(); } break; @@ -2668,20 +2512,20 @@ public class SimpleJavaParser extends Parser { int _parentState = getState(); CalculationExpressionContext _localctx = new CalculationExpressionContext(_ctx, _parentState); CalculationExpressionContext _prevctx = _localctx; - int _startState = 72; - enterRecursionRule(_localctx, 72, RULE_calculationExpression, _p); + int _startState = 68; + enterRecursionRule(_localctx, 68, RULE_calculationExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { { - setState(349); + setState(326); dotExpression(0); } _ctx.stop = _input.LT(-1); - setState(356); + setState(333); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,34,_ctx); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -2690,18 +2534,18 @@ public class SimpleJavaParser extends Parser { { _localctx = new CalculationExpressionContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_calculationExpression); - setState(351); + setState(328); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(352); + setState(329); match(LineOperator); - setState(353); + setState(330); dotExpression(0); } } } - setState(358); + setState(335); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,34,_ctx); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); } } } @@ -2753,20 +2597,20 @@ public class SimpleJavaParser extends Parser { int _parentState = getState(); DotExpressionContext _localctx = new DotExpressionContext(_ctx, _parentState); DotExpressionContext _prevctx = _localctx; - int _startState = 74; - enterRecursionRule(_localctx, 74, RULE_dotExpression, _p); + int _startState = 70; + enterRecursionRule(_localctx, 70, RULE_dotExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { { - setState(360); + setState(337); dotSubtractionExpression(); } _ctx.stop = _input.LT(-1); - setState(367); + setState(344); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -2775,18 +2619,18 @@ public class SimpleJavaParser extends Parser { { _localctx = new DotExpressionContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_dotExpression); - setState(362); + setState(339); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(363); + setState(340); match(DotOperator); - setState(364); + setState(341); dotSubtractionExpression(); } } } - setState(369); + setState(346); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } } } @@ -2837,42 +2681,42 @@ public class SimpleJavaParser extends Parser { public final DotSubtractionExpressionContext dotSubtractionExpression() throws RecognitionException { DotSubtractionExpressionContext _localctx = new DotSubtractionExpressionContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_dotSubtractionExpression); + enterRule(_localctx, 72, RULE_dotSubtractionExpression); try { - setState(378); + setState(355); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(370); + setState(347); match(IntValue); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(371); + setState(348); match(Identifier); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(372); + setState(349); memberAccess(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(373); + setState(350); methodCall(); - setState(374); + setState(351); match(OpenRoundBracket); - setState(375); + setState(352); calculationExpression(0); - setState(376); + setState(353); match(ClosedRoundBracket); } break; @@ -2921,15 +2765,15 @@ public class SimpleJavaParser extends Parser { public final NonCalculationExpressionContext nonCalculationExpression() throws RecognitionException { NonCalculationExpressionContext _localctx = new NonCalculationExpressionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_nonCalculationExpression); + enterRule(_localctx, 74, RULE_nonCalculationExpression); try { enterOuterAlt(_localctx, 1); { - setState(380); + setState(357); unaryExpression(); - setState(381); + setState(358); nonCalculationOperator(); - setState(382); + setState(359); expression(); } } @@ -2982,44 +2826,44 @@ public class SimpleJavaParser extends Parser { public final MethodCallContext methodCall() throws RecognitionException { MethodCallContext _localctx = new MethodCallContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_methodCall); + enterRule(_localctx, 76, RULE_methodCall); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(385); + setState(362); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: { - setState(384); + setState(361); target(); } break; } - setState(390); + setState(367); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,38,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(387); + setState(364); chainedMethod(); } } } - setState(392); + setState(369); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,38,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); } - setState(393); + setState(370); match(Identifier); - setState(394); + setState(371); match(OpenRoundBracket); - setState(395); + setState(372); argumentList(); - setState(396); + setState(373); match(ClosedRoundBracket); } } @@ -3066,39 +2910,39 @@ public class SimpleJavaParser extends Parser { public final TargetContext target() throws RecognitionException { TargetContext _localctx = new TargetContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_target); + enterRule(_localctx, 78, RULE_target); try { enterOuterAlt(_localctx, 1); { - setState(402); + setState(379); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(398); + setState(375); match(This); } break; case 2: { - setState(399); + setState(376); memberAccess(); } break; case 3: { - setState(400); + setState(377); newDeclaration(); } break; case 4: { - setState(401); + setState(378); match(Identifier); } break; } - setState(404); + setState(381); match(Dot); } } @@ -3143,19 +2987,19 @@ public class SimpleJavaParser extends Parser { public final ChainedMethodContext chainedMethod() throws RecognitionException { ChainedMethodContext _localctx = new ChainedMethodContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_chainedMethod); + enterRule(_localctx, 80, RULE_chainedMethod); try { enterOuterAlt(_localctx, 1); { - setState(406); + setState(383); match(Identifier); - setState(407); + setState(384); match(OpenRoundBracket); - setState(408); + setState(385); argumentList(); - setState(409); + setState(386); match(ClosedRoundBracket); - setState(410); + setState(387); match(Dot); } } @@ -3197,14 +3041,14 @@ public class SimpleJavaParser extends Parser { public final TypeContext type() throws RecognitionException { TypeContext _localctx = new TypeContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_type); + enterRule(_localctx, 82, RULE_type); int _la; try { enterOuterAlt(_localctx, 1); { - setState(412); + setState(389); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 281474976710768L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 140737488355440L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3252,14 +3096,14 @@ public class SimpleJavaParser extends Parser { public final ValueContext value() throws RecognitionException { ValueContext _localctx = new ValueContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_value); + enterRule(_localctx, 84, RULE_value); int _la; try { enterOuterAlt(_localctx, 1); { - setState(414); + setState(391); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 263882790666240L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 131941395333120L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -3305,12 +3149,12 @@ public class SimpleJavaParser extends Parser { public final NonCalculationOperatorContext nonCalculationOperator() throws RecognitionException { NonCalculationOperatorContext _localctx = new NonCalculationOperatorContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_nonCalculationOperator); + enterRule(_localctx, 86, RULE_nonCalculationOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(416); + setState(393); _la = _input.LA(1); if ( !(_la==ComparisonOperator || _la==LogicalOperator) ) { _errHandler.recoverInline(this); @@ -3335,9 +3179,9 @@ public class SimpleJavaParser extends Parser { public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { switch (ruleIndex) { - case 36: + case 34: return calculationExpression_sempred((CalculationExpressionContext)_localctx, predIndex); - case 37: + case 35: return dotExpression_sempred((DotExpressionContext)_localctx, predIndex); } return true; @@ -3358,7 +3202,7 @@ public class SimpleJavaParser extends Parser { } public static final String _serializedATN = - "\u0004\u00013\u01a3\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ + "\u0004\u00012\u018c\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ "\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+ "\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+ "\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002"+ @@ -3370,253 +3214,238 @@ public class SimpleJavaParser extends Parser { "\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007\u001e"+ "\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007\"\u0002"+ "#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007\'\u0002"+ - "(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007,\u0002"+ - "-\u0007-\u0001\u0000\u0004\u0000^\b\u0000\u000b\u0000\f\u0000_\u0001\u0001"+ - "\u0003\u0001c\b\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0005\u0001i\b\u0001\n\u0001\f\u0001l\t\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002s\b\u0002\u0001\u0003"+ - "\u0003\u0003v\b\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+ - "{\b\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0003\u0004"+ - "\u0081\b\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0003\u0005\u008a\b\u0005\u0001\u0005\u0001\u0005"+ - "\u0003\u0005\u008e\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+ - "\u0093\b\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u0097\b\u0005\u0001"+ - "\u0006\u0001\u0006\u0001\u0006\u0005\u0006\u009c\b\u0006\n\u0006\f\u0006"+ - "\u009f\t\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001"+ - "\b\u0005\b\u00a7\b\b\n\b\f\b\u00aa\t\b\u0003\b\u00ac\b\b\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0003\t\u00bc\b\t\u0001\n\u0001\n\u0005\n\u00c0"+ - "\b\n\n\n\f\n\u00c3\t\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0003\u000b"+ - "\u00c9\b\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u00cf\b\f\u0001"+ - "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+ - "\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f\u00e3\b\u000f\u0001"+ - "\u000f\u0001\u000f\u0003\u000f\u00e7\b\u000f\u0001\u000f\u0001\u000f\u0003"+ - "\u000f\u00eb\b\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001"+ - "\u0010\u0005\u0010\u00f2\b\u0010\n\u0010\f\u0010\u00f5\t\u0010\u0001\u0010"+ - "\u0003\u0010\u00f8\b\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ + "(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0001\u0000\u0004\u0000"+ + "Z\b\u0000\u000b\u0000\f\u0000[\u0001\u0001\u0003\u0001_\b\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001e\b\u0001\n\u0001"+ + "\f\u0001h\t\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001"+ + "\u0002\u0003\u0002o\b\u0002\u0001\u0003\u0003\u0003r\b\u0003\u0001\u0003"+ + "\u0001\u0003\u0001\u0003\u0003\u0003w\b\u0003\u0001\u0003\u0001\u0003"+ + "\u0001\u0003\u0001\u0004\u0003\u0004}\b\u0004\u0001\u0004\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+ + "\u0086\b\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u008a\b\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u008f\b\u0005\u0001\u0005\u0001"+ + "\u0005\u0003\u0005\u0093\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0005"+ + "\u0006\u0098\b\u0006\n\u0006\f\u0006\u009b\t\u0006\u0001\u0007\u0001\u0007"+ + "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0005\b\u00a3\b\b\n\b\f\b\u00a6\t"+ + "\b\u0003\b\u00a8\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u00b7\b\t\u0001"+ + "\n\u0001\n\u0005\n\u00bb\b\n\n\n\f\n\u00be\t\n\u0001\n\u0001\n\u0001\u000b"+ + "\u0001\u000b\u0003\u000b\u00c4\b\u000b\u0001\f\u0001\f\u0001\f\u0001\f"+ + "\u0003\f\u00ca\b\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+ + "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0003\u000e\u00d6\b\u000e\u0001"+ + "\u000e\u0001\u000e\u0003\u000e\u00da\b\u000e\u0001\u000e\u0001\u000e\u0003"+ + "\u000e\u00de\b\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001"+ + "\u000f\u0005\u000f\u00e5\b\u000f\n\u000f\f\u000f\u00e8\t\u000f\u0001\u0010"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011"+ "\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ - "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013"+ - "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u010e\b\u0014"+ - "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016"+ - "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017"+ - "\u0003\u0017\u011c\b\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+ - "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+ - "\u0003\u0018\u0128\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a"+ - "\u0001\u001a\u0003\u001a\u012f\b\u001a\u0001\u001b\u0001\u001b\u0003\u001b"+ - "\u0133\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d"+ - "\u0001\u001d\u0001\u001e\u0001\u001e\u0003\u001e\u013d\b\u001e\u0001\u001f"+ - "\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001!\u0001!\u0003!\u0147"+ - "\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0003\"\u014e\b\"\u0001\""+ - "\u0001\"\u0004\"\u0152\b\"\u000b\"\f\"\u0153\u0001\"\u0003\"\u0157\b\""+ - "\u0001#\u0001#\u0003#\u015b\b#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+ - "$\u0005$\u0163\b$\n$\f$\u0166\t$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+ - "%\u0005%\u016e\b%\n%\f%\u0171\t%\u0001&\u0001&\u0001&\u0001&\u0001&\u0001"+ - "&\u0001&\u0001&\u0003&\u017b\b&\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+ - "(\u0003(\u0182\b(\u0001(\u0005(\u0185\b(\n(\f(\u0188\t(\u0001(\u0001("+ - "\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001)\u0003)\u0193\b)\u0001"+ - ")\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ - ",\u0001,\u0001-\u0001-\u0001-\u0000\u0002HJ.\u0000\u0002\u0004\u0006\b"+ - "\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02"+ - "468:<>@BDFHJLNPRTVXZ\u0000\u0003\u0002\u0000\u0004\u000600\u0001\u0000"+ - ",/\u0001\u0000\u000b\f\u01ae\u0000]\u0001\u0000\u0000\u0000\u0002b\u0001"+ - "\u0000\u0000\u0000\u0004r\u0001\u0000\u0000\u0000\u0006u\u0001\u0000\u0000"+ - "\u0000\b\u0080\u0001\u0000\u0000\u0000\n\u0096\u0001\u0000\u0000\u0000"+ - "\f\u0098\u0001\u0000\u0000\u0000\u000e\u00a0\u0001\u0000\u0000\u0000\u0010"+ - "\u00ab\u0001\u0000\u0000\u0000\u0012\u00bb\u0001\u0000\u0000\u0000\u0014"+ - "\u00bd\u0001\u0000\u0000\u0000\u0016\u00c6\u0001\u0000\u0000\u0000\u0018"+ - "\u00ca\u0001\u0000\u0000\u0000\u001a\u00d0\u0001\u0000\u0000\u0000\u001c"+ - "\u00d6\u0001\u0000\u0000\u0000\u001e\u00de\u0001\u0000\u0000\u0000 \u00ef"+ - "\u0001\u0000\u0000\u0000\"\u00f9\u0001\u0000\u0000\u0000$\u00ff\u0001"+ - "\u0000\u0000\u0000&\u0106\u0001\u0000\u0000\u0000(\u010d\u0001\u0000\u0000"+ - "\u0000*\u010f\u0001\u0000\u0000\u0000,\u0113\u0001\u0000\u0000\u0000."+ - "\u011b\u0001\u0000\u0000\u00000\u0127\u0001\u0000\u0000\u00002\u0129\u0001"+ - "\u0000\u0000\u00004\u012e\u0001\u0000\u0000\u00006\u0132\u0001\u0000\u0000"+ - "\u00008\u0134\u0001\u0000\u0000\u0000:\u0137\u0001\u0000\u0000\u0000<"+ - "\u013c\u0001\u0000\u0000\u0000>\u013e\u0001\u0000\u0000\u0000@\u0141\u0001"+ - "\u0000\u0000\u0000B\u0146\u0001\u0000\u0000\u0000D\u0156\u0001\u0000\u0000"+ - "\u0000F\u015a\u0001\u0000\u0000\u0000H\u015c\u0001\u0000\u0000\u0000J"+ - "\u0167\u0001\u0000\u0000\u0000L\u017a\u0001\u0000\u0000\u0000N\u017c\u0001"+ - "\u0000\u0000\u0000P\u0181\u0001\u0000\u0000\u0000R\u0192\u0001\u0000\u0000"+ - "\u0000T\u0196\u0001\u0000\u0000\u0000V\u019c\u0001\u0000\u0000\u0000X"+ - "\u019e\u0001\u0000\u0000\u0000Z\u01a0\u0001\u0000\u0000\u0000\\^\u0003"+ - "\u0002\u0001\u0000]\\\u0001\u0000\u0000\u0000^_\u0001\u0000\u0000\u0000"+ - "_]\u0001\u0000\u0000\u0000_`\u0001\u0000\u0000\u0000`\u0001\u0001\u0000"+ - "\u0000\u0000ac\u0005\u0007\u0000\u0000ba\u0001\u0000\u0000\u0000bc\u0001"+ - "\u0000\u0000\u0000cd\u0001\u0000\u0000\u0000de\u0005#\u0000\u0000ef\u0005"+ - "0\u0000\u0000fj\u0005\u001f\u0000\u0000gi\u0003\u0004\u0002\u0000hg\u0001"+ - "\u0000\u0000\u0000il\u0001\u0000\u0000\u0000jh\u0001\u0000\u0000\u0000"+ - "jk\u0001\u0000\u0000\u0000km\u0001\u0000\u0000\u0000lj\u0001\u0000\u0000"+ - "\u0000mn\u0005 \u0000\u0000n\u0003\u0001\u0000\u0000\u0000os\u0003\u0006"+ - "\u0003\u0000ps\u0003\b\u0004\u0000qs\u0003\n\u0005\u0000ro\u0001\u0000"+ - "\u0000\u0000rp\u0001\u0000\u0000\u0000rq\u0001\u0000\u0000\u0000s\u0005"+ - "\u0001\u0000\u0000\u0000tv\u0005\u0007\u0000\u0000ut\u0001\u0000\u0000"+ - "\u0000uv\u0001\u0000\u0000\u0000vw\u0001\u0000\u0000\u0000wx\u00050\u0000"+ - "\u0000xz\u0005\u001d\u0000\u0000y{\u0003\f\u0006\u0000zy\u0001\u0000\u0000"+ - "\u0000z{\u0001\u0000\u0000\u0000{|\u0001\u0000\u0000\u0000|}\u0005\u001e"+ - "\u0000\u0000}~\u0003\u0014\n\u0000~\u0007\u0001\u0000\u0000\u0000\u007f"+ - "\u0081\u0005\u0007\u0000\u0000\u0080\u007f\u0001\u0000\u0000\u0000\u0080"+ - "\u0081\u0001\u0000\u0000\u0000\u0081\u0082\u0001\u0000\u0000\u0000\u0082"+ - "\u0083\u0003V+\u0000\u0083\u0084\u00050\u0000\u0000\u0084\u0085\u0005"+ - "!\u0000\u0000\u0085\t\u0001\u0000\u0000\u0000\u0086\u0087\u0005\b\u0000"+ - "\u0000\u0087\u0097\u0003\u0014\n\u0000\u0088\u008a\u0005\u0007\u0000\u0000"+ - "\u0089\u0088\u0001\u0000\u0000\u0000\u0089\u008a\u0001\u0000\u0000\u0000"+ - "\u008a\u008d\u0001\u0000\u0000\u0000\u008b\u008e\u0003V+\u0000\u008c\u008e"+ - "\u0005\u0003\u0000\u0000\u008d\u008b\u0001\u0000\u0000\u0000\u008d\u008c"+ - "\u0001\u0000\u0000\u0000\u008e\u008f\u0001\u0000\u0000\u0000\u008f\u0090"+ - "\u00050\u0000\u0000\u0090\u0092\u0005\u001d\u0000\u0000\u0091\u0093\u0003"+ - "\f\u0006\u0000\u0092\u0091\u0001\u0000\u0000\u0000\u0092\u0093\u0001\u0000"+ - "\u0000\u0000\u0093\u0094\u0001\u0000\u0000\u0000\u0094\u0095\u0005\u001e"+ - "\u0000\u0000\u0095\u0097\u0003\u0014\n\u0000\u0096\u0086\u0001\u0000\u0000"+ - "\u0000\u0096\u0089\u0001\u0000\u0000\u0000\u0097\u000b\u0001\u0000\u0000"+ - "\u0000\u0098\u009d\u0003\u000e\u0007\u0000\u0099\u009a\u0005\"\u0000\u0000"+ - "\u009a\u009c\u0003\u000e\u0007\u0000\u009b\u0099\u0001\u0000\u0000\u0000"+ - "\u009c\u009f\u0001\u0000\u0000\u0000\u009d\u009b\u0001\u0000\u0000\u0000"+ - "\u009d\u009e\u0001\u0000\u0000\u0000\u009e\r\u0001\u0000\u0000\u0000\u009f"+ - "\u009d\u0001\u0000\u0000\u0000\u00a0\u00a1\u0003V+\u0000\u00a1\u00a2\u0005"+ - "0\u0000\u0000\u00a2\u000f\u0001\u0000\u0000\u0000\u00a3\u00a8\u0003.\u0017"+ - "\u0000\u00a4\u00a5\u0005\"\u0000\u0000\u00a5\u00a7\u0003.\u0017\u0000"+ - "\u00a6\u00a4\u0001\u0000\u0000\u0000\u00a7\u00aa\u0001\u0000\u0000\u0000"+ - "\u00a8\u00a6\u0001\u0000\u0000\u0000\u00a8\u00a9\u0001\u0000\u0000\u0000"+ - "\u00a9\u00ac\u0001\u0000\u0000\u0000\u00aa\u00a8\u0001\u0000\u0000\u0000"+ - "\u00ab\u00a3\u0001\u0000\u0000\u0000\u00ab\u00ac\u0001\u0000\u0000\u0000"+ - "\u00ac\u0011\u0001\u0000\u0000\u0000\u00ad\u00ae\u0003\u0016\u000b\u0000"+ - "\u00ae\u00af\u0005!\u0000\u0000\u00af\u00bc\u0001\u0000\u0000\u0000\u00b0"+ - "\u00b1\u0003\u0018\f\u0000\u00b1\u00b2\u0005!\u0000\u0000\u00b2\u00bc"+ - "\u0001\u0000\u0000\u0000\u00b3\u00bc\u0003\u0014\n\u0000\u00b4\u00bc\u0003"+ - "\u001a\r\u0000\u00b5\u00bc\u0003\u001c\u000e\u0000\u00b6\u00bc\u0003\u001e"+ - "\u000f\u0000\u00b7\u00bc\u0003 \u0010\u0000\u00b8\u00b9\u0003(\u0014\u0000"+ - "\u00b9\u00ba\u0005!\u0000\u0000\u00ba\u00bc\u0001\u0000\u0000\u0000\u00bb"+ - "\u00ad\u0001\u0000\u0000\u0000\u00bb\u00b0\u0001\u0000\u0000\u0000\u00bb"+ - "\u00b3\u0001\u0000\u0000\u0000\u00bb\u00b4\u0001\u0000\u0000\u0000\u00bb"+ - "\u00b5\u0001\u0000\u0000\u0000\u00bb\u00b6\u0001\u0000\u0000\u0000\u00bb"+ - "\u00b7\u0001\u0000\u0000\u0000\u00bb\u00b8\u0001\u0000\u0000\u0000\u00bc"+ - "\u0013\u0001\u0000\u0000\u0000\u00bd\u00c1\u0005\u001f\u0000\u0000\u00be"+ - "\u00c0\u0003\u0012\t\u0000\u00bf\u00be\u0001\u0000\u0000\u0000\u00c0\u00c3"+ - "\u0001\u0000\u0000\u0000\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c1\u00c2"+ - "\u0001\u0000\u0000\u0000\u00c2\u00c4\u0001\u0000\u0000\u0000\u00c3\u00c1"+ - "\u0001\u0000\u0000\u0000\u00c4\u00c5\u0005 \u0000\u0000\u00c5\u0015\u0001"+ - "\u0000\u0000\u0000\u00c6\u00c8\u0005*\u0000\u0000\u00c7\u00c9\u0003.\u0017"+ - "\u0000\u00c8\u00c7\u0001\u0000\u0000\u0000\u00c8\u00c9\u0001\u0000\u0000"+ - "\u0000\u00c9\u0017\u0001\u0000\u0000\u0000\u00ca\u00cb\u0003V+\u0000\u00cb"+ - "\u00ce\u00050\u0000\u0000\u00cc\u00cd\u0005\r\u0000\u0000\u00cd\u00cf"+ - "\u0003.\u0017\u0000\u00ce\u00cc\u0001\u0000\u0000\u0000\u00ce\u00cf\u0001"+ - "\u0000\u0000\u0000\u00cf\u0019\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005"+ - "%\u0000\u0000\u00d1\u00d2\u0005\u001d\u0000\u0000\u00d2\u00d3\u0003.\u0017"+ - "\u0000\u00d3\u00d4\u0005\u001e\u0000\u0000\u00d4\u00d5\u0003\u0014\n\u0000"+ - "\u00d5\u001b\u0001\u0000\u0000\u0000\u00d6\u00d7\u0005&\u0000\u0000\u00d7"+ - "\u00d8\u0003\u0014\n\u0000\u00d8\u00d9\u0005%\u0000\u0000\u00d9\u00da"+ - "\u0005\u001d\u0000\u0000\u00da\u00db\u0003.\u0017\u0000\u00db\u00dc\u0005"+ - "\u001e\u0000\u0000\u00dc\u00dd\u0005!\u0000\u0000\u00dd\u001d\u0001\u0000"+ - "\u0000\u0000\u00de\u00df\u0005)\u0000\u0000\u00df\u00e2\u0005\u001d\u0000"+ - "\u0000\u00e0\u00e3\u0003(\u0014\u0000\u00e1\u00e3\u0003\u0018\f\u0000"+ - "\u00e2\u00e0\u0001\u0000\u0000\u0000\u00e2\u00e1\u0001\u0000\u0000\u0000"+ - "\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e6\u0005!\u0000\u0000\u00e5"+ - "\u00e7\u0003.\u0017\u0000\u00e6\u00e5\u0001\u0000\u0000\u0000\u00e6\u00e7"+ - "\u0001\u0000\u0000\u0000\u00e7\u00e8\u0001\u0000\u0000\u0000\u00e8\u00ea"+ - "\u0005!\u0000\u0000\u00e9\u00eb\u0003(\u0014\u0000\u00ea\u00e9\u0001\u0000"+ - "\u0000\u0000\u00ea\u00eb\u0001\u0000\u0000\u0000\u00eb\u00ec\u0001\u0000"+ - "\u0000\u0000\u00ec\u00ed\u0005\u001e\u0000\u0000\u00ed\u00ee\u0003\u0014"+ - "\n\u0000\u00ee\u001f\u0001\u0000\u0000\u0000\u00ef\u00f3\u0003\"\u0011"+ - "\u0000\u00f0\u00f2\u0003$\u0012\u0000\u00f1\u00f0\u0001\u0000\u0000\u0000"+ - "\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000\u0000\u0000"+ - "\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4\u00f7\u0001\u0000\u0000\u0000"+ - "\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6\u00f8\u0003&\u0013\u0000\u00f7"+ - "\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001\u0000\u0000\u0000\u00f8"+ - "!\u0001\u0000\u0000\u0000\u00f9\u00fa\u0005\'\u0000\u0000\u00fa\u00fb"+ - "\u0005\u001d\u0000\u0000\u00fb\u00fc\u0003.\u0017\u0000\u00fc\u00fd\u0005"+ - "\u001e\u0000\u0000\u00fd\u00fe\u0003\u0014\n\u0000\u00fe#\u0001\u0000"+ - "\u0000\u0000\u00ff\u0100\u0005(\u0000\u0000\u0100\u0101\u0005\'\u0000"+ - "\u0000\u0101\u0102\u0005\u001d\u0000\u0000\u0102\u0103\u0003.\u0017\u0000"+ - "\u0103\u0104\u0005\u001e\u0000\u0000\u0104\u0105\u0003\u0014\n\u0000\u0105"+ - "%\u0001\u0000\u0000\u0000\u0106\u0107\u0005(\u0000\u0000\u0107\u0108\u0003"+ - "\u0014\n\u0000\u0108\'\u0001\u0000\u0000\u0000\u0109\u010e\u0003*\u0015"+ - "\u0000\u010a\u010e\u0003,\u0016\u0000\u010b\u010e\u0003P(\u0000\u010c"+ - "\u010e\u00034\u001a\u0000\u010d\u0109\u0001\u0000\u0000\u0000\u010d\u010a"+ - "\u0001\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010c"+ - "\u0001\u0000\u0000\u0000\u010e)\u0001\u0000\u0000\u0000\u010f\u0110\u0003"+ - "B!\u0000\u0110\u0111\u0005\r\u0000\u0000\u0111\u0112\u0003.\u0017\u0000"+ - "\u0112+\u0001\u0000\u0000\u0000\u0113\u0114\u0005+\u0000\u0000\u0114\u0115"+ - "\u00050\u0000\u0000\u0115\u0116\u0005\u001d\u0000\u0000\u0116\u0117\u0003"+ - "\u0010\b\u0000\u0117\u0118\u0005\u001e\u0000\u0000\u0118-\u0001\u0000"+ - "\u0000\u0000\u0119\u011c\u00030\u0018\u0000\u011a\u011c\u0003F#\u0000"+ - "\u011b\u0119\u0001\u0000\u0000\u0000\u011b\u011a\u0001\u0000\u0000\u0000"+ - "\u011c/\u0001\u0000\u0000\u0000\u011d\u0128\u0005$\u0000\u0000\u011e\u0128"+ - "\u00050\u0000\u0000\u011f\u0128\u0003D\"\u0000\u0120\u0128\u0003X,\u0000"+ - "\u0121\u0128\u00032\u0019\u0000\u0122\u0128\u0003(\u0014\u0000\u0123\u0124"+ - "\u0005\u001d\u0000\u0000\u0124\u0125\u0003.\u0017\u0000\u0125\u0126\u0005"+ - "\u001e\u0000\u0000\u0126\u0128\u0001\u0000\u0000\u0000\u0127\u011d\u0001"+ - "\u0000\u0000\u0000\u0127\u011e\u0001\u0000\u0000\u0000\u0127\u011f\u0001"+ - "\u0000\u0000\u0000\u0127\u0120\u0001\u0000\u0000\u0000\u0127\u0121\u0001"+ - "\u0000\u0000\u0000\u0127\u0122\u0001\u0000\u0000\u0000\u0127\u0123\u0001"+ - "\u0000\u0000\u0000\u01281\u0001\u0000\u0000\u0000\u0129\u012a\u0005\u0019"+ - "\u0000\u0000\u012a\u012b\u0003.\u0017\u0000\u012b3\u0001\u0000\u0000\u0000"+ - "\u012c\u012f\u00036\u001b\u0000\u012d\u012f\u0003<\u001e\u0000\u012e\u012c"+ - "\u0001\u0000\u0000\u0000\u012e\u012d\u0001\u0000\u0000\u0000\u012f5\u0001"+ - "\u0000\u0000\u0000\u0130\u0133\u00038\u001c\u0000\u0131\u0133\u0003:\u001d"+ - "\u0000\u0132\u0130\u0001\u0000\u0000\u0000\u0132\u0131\u0001\u0000\u0000"+ - "\u0000\u01337\u0001\u0000\u0000\u0000\u0134\u0135\u0005\u0001\u0000\u0000"+ - "\u0135\u0136\u0003B!\u0000\u01369\u0001\u0000\u0000\u0000\u0137\u0138"+ - "\u0003B!\u0000\u0138\u0139\u0005\u0001\u0000\u0000\u0139;\u0001\u0000"+ - "\u0000\u0000\u013a\u013d\u0003>\u001f\u0000\u013b\u013d\u0003@ \u0000"+ - "\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000\u0000\u0000"+ - "\u013d=\u0001\u0000\u0000\u0000\u013e\u013f\u0005\u0002\u0000\u0000\u013f"+ - "\u0140\u0003B!\u0000\u0140?\u0001\u0000\u0000\u0000\u0141\u0142\u0003"+ - "B!\u0000\u0142\u0143\u0005\u0002\u0000\u0000\u0143A\u0001\u0000\u0000"+ - "\u0000\u0144\u0147\u00050\u0000\u0000\u0145\u0147\u0003D\"\u0000\u0146"+ - "\u0144\u0001\u0000\u0000\u0000\u0146\u0145\u0001\u0000\u0000\u0000\u0147"+ - "C\u0001\u0000\u0000\u0000\u0148\u0149\u0005$\u0000\u0000\u0149\u014a\u0005"+ - "\u001c\u0000\u0000\u014a\u0157\u00050\u0000\u0000\u014b\u014c\u0005$\u0000"+ - "\u0000\u014c\u014e\u0005\u001c\u0000\u0000\u014d\u014b\u0001\u0000\u0000"+ - "\u0000\u014d\u014e\u0001\u0000\u0000\u0000\u014e\u0151\u0001\u0000\u0000"+ - "\u0000\u014f\u0150\u00050\u0000\u0000\u0150\u0152\u0005\u001c\u0000\u0000"+ - "\u0151\u014f\u0001\u0000\u0000\u0000\u0152\u0153\u0001\u0000\u0000\u0000"+ - "\u0153\u0151\u0001\u0000\u0000\u0000\u0153\u0154\u0001\u0000\u0000\u0000"+ - "\u0154\u0155\u0001\u0000\u0000\u0000\u0155\u0157\u00050\u0000\u0000\u0156"+ - "\u0148\u0001\u0000\u0000\u0000\u0156\u014d\u0001\u0000\u0000\u0000\u0157"+ - "E\u0001\u0000\u0000\u0000\u0158\u015b\u0003H$\u0000\u0159\u015b\u0003"+ - "N\'\u0000\u015a\u0158\u0001\u0000\u0000\u0000\u015a\u0159\u0001\u0000"+ - "\u0000\u0000\u015bG\u0001\u0000\u0000\u0000\u015c\u015d\u0006$\uffff\uffff"+ - "\u0000\u015d\u015e\u0003J%\u0000\u015e\u0164\u0001\u0000\u0000\u0000\u015f"+ - "\u0160\n\u0002\u0000\u0000\u0160\u0161\u0005\n\u0000\u0000\u0161\u0163"+ - "\u0003J%\u0000\u0162\u015f\u0001\u0000\u0000\u0000\u0163\u0166\u0001\u0000"+ - "\u0000\u0000\u0164\u0162\u0001\u0000\u0000\u0000\u0164\u0165\u0001\u0000"+ - "\u0000\u0000\u0165I\u0001\u0000\u0000\u0000\u0166\u0164\u0001\u0000\u0000"+ - "\u0000\u0167\u0168\u0006%\uffff\uffff\u0000\u0168\u0169\u0003L&\u0000"+ - "\u0169\u016f\u0001\u0000\u0000\u0000\u016a\u016b\n\u0002\u0000\u0000\u016b"+ - "\u016c\u0005\t\u0000\u0000\u016c\u016e\u0003L&\u0000\u016d\u016a\u0001"+ - "\u0000\u0000\u0000\u016e\u0171\u0001\u0000\u0000\u0000\u016f\u016d\u0001"+ - "\u0000\u0000\u0000\u016f\u0170\u0001\u0000\u0000\u0000\u0170K\u0001\u0000"+ - "\u0000\u0000\u0171\u016f\u0001\u0000\u0000\u0000\u0172\u017b\u0005-\u0000"+ - "\u0000\u0173\u017b\u00050\u0000\u0000\u0174\u017b\u0003D\"\u0000\u0175"+ - "\u0176\u0003P(\u0000\u0176\u0177\u0005\u001d\u0000\u0000\u0177\u0178\u0003"+ - "H$\u0000\u0178\u0179\u0005\u001e\u0000\u0000\u0179\u017b\u0001\u0000\u0000"+ - "\u0000\u017a\u0172\u0001\u0000\u0000\u0000\u017a\u0173\u0001\u0000\u0000"+ - "\u0000\u017a\u0174\u0001\u0000\u0000\u0000\u017a\u0175\u0001\u0000\u0000"+ - "\u0000\u017bM\u0001\u0000\u0000\u0000\u017c\u017d\u00030\u0018\u0000\u017d"+ - "\u017e\u0003Z-\u0000\u017e\u017f\u0003.\u0017\u0000\u017fO\u0001\u0000"+ - "\u0000\u0000\u0180\u0182\u0003R)\u0000\u0181\u0180\u0001\u0000\u0000\u0000"+ - "\u0181\u0182\u0001\u0000\u0000\u0000\u0182\u0186\u0001\u0000\u0000\u0000"+ - "\u0183\u0185\u0003T*\u0000\u0184\u0183\u0001\u0000\u0000\u0000\u0185\u0188"+ - "\u0001\u0000\u0000\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187"+ - "\u0001\u0000\u0000\u0000\u0187\u0189\u0001\u0000\u0000\u0000\u0188\u0186"+ - "\u0001\u0000\u0000\u0000\u0189\u018a\u00050\u0000\u0000\u018a\u018b\u0005"+ - "\u001d\u0000\u0000\u018b\u018c\u0003\u0010\b\u0000\u018c\u018d\u0005\u001e"+ - "\u0000\u0000\u018dQ\u0001\u0000\u0000\u0000\u018e\u0193\u0005$\u0000\u0000"+ - "\u018f\u0193\u0003D\"\u0000\u0190\u0193\u0003,\u0016\u0000\u0191\u0193"+ - "\u00050\u0000\u0000\u0192\u018e\u0001\u0000\u0000\u0000\u0192\u018f\u0001"+ - "\u0000\u0000\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0192\u0191\u0001"+ - "\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000\u0000\u0194\u0195\u0005"+ - "\u001c\u0000\u0000\u0195S\u0001\u0000\u0000\u0000\u0196\u0197\u00050\u0000"+ - "\u0000\u0197\u0198\u0005\u001d\u0000\u0000\u0198\u0199\u0003\u0010\b\u0000"+ - "\u0199\u019a\u0005\u001e\u0000\u0000\u019a\u019b\u0005\u001c\u0000\u0000"+ - "\u019bU\u0001\u0000\u0000\u0000\u019c\u019d\u0007\u0000\u0000\u0000\u019d"+ - "W\u0001\u0000\u0000\u0000\u019e\u019f\u0007\u0001\u0000\u0000\u019fY\u0001"+ - "\u0000\u0000\u0000\u01a0\u01a1\u0007\u0002\u0000\u0000\u01a1[\u0001\u0000"+ - "\u0000\u0000(_bjruz\u0080\u0089\u008d\u0092\u0096\u009d\u00a8\u00ab\u00bb"+ - "\u00c1\u00c8\u00ce\u00e2\u00e6\u00ea\u00f3\u00f7\u010d\u011b\u0127\u012e"+ - "\u0132\u013c\u0146\u014d\u0153\u0156\u015a\u0164\u016f\u017a\u0181\u0186"+ - "\u0192"; + "\u0003\u0012\u00f7\b\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+ + "\u0001\u0015\u0001\u0015\u0003\u0015\u0105\b\u0015\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0003\u0016\u0111\b\u0016\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0018\u0001\u0018\u0003\u0018\u0118\b\u0018\u0001\u0019"+ + "\u0001\u0019\u0003\u0019\u011c\b\u0019\u0001\u001a\u0001\u001a\u0001\u001a"+ + "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0003\u001c"+ + "\u0126\b\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e"+ + "\u0001\u001e\u0001\u001f\u0001\u001f\u0003\u001f\u0130\b\u001f\u0001 "+ + "\u0001 \u0001 \u0001 \u0001 \u0003 \u0137\b \u0001 \u0001 \u0004 \u013b"+ + "\b \u000b \f \u013c\u0001 \u0003 \u0140\b \u0001!\u0001!\u0003!\u0144"+ + "\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u014c\b\""+ + "\n\"\f\"\u014f\t\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0005#\u0157"+ + "\b#\n#\f#\u015a\t#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+ + "$\u0003$\u0164\b$\u0001%\u0001%\u0001%\u0001%\u0001&\u0003&\u016b\b&\u0001"+ + "&\u0005&\u016e\b&\n&\f&\u0171\t&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001"+ + "\'\u0001\'\u0001\'\u0001\'\u0003\'\u017c\b\'\u0001\'\u0001\'\u0001(\u0001"+ + "(\u0001(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001*\u0001*\u0001+\u0001"+ + "+\u0001+\u0000\u0002DF,\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012"+ + "\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTV\u0000"+ + "\u0003\u0002\u0000\u0004\u0006//\u0001\u0000+.\u0001\u0000\u000b\f\u0197"+ + "\u0000Y\u0001\u0000\u0000\u0000\u0002^\u0001\u0000\u0000\u0000\u0004n"+ + "\u0001\u0000\u0000\u0000\u0006q\u0001\u0000\u0000\u0000\b|\u0001\u0000"+ + "\u0000\u0000\n\u0092\u0001\u0000\u0000\u0000\f\u0094\u0001\u0000\u0000"+ + "\u0000\u000e\u009c\u0001\u0000\u0000\u0000\u0010\u00a7\u0001\u0000\u0000"+ + "\u0000\u0012\u00b6\u0001\u0000\u0000\u0000\u0014\u00b8\u0001\u0000\u0000"+ + "\u0000\u0016\u00c1\u0001\u0000\u0000\u0000\u0018\u00c5\u0001\u0000\u0000"+ + "\u0000\u001a\u00cb\u0001\u0000\u0000\u0000\u001c\u00d1\u0001\u0000\u0000"+ + "\u0000\u001e\u00e2\u0001\u0000\u0000\u0000 \u00e9\u0001\u0000\u0000\u0000"+ + "\"\u00ef\u0001\u0000\u0000\u0000$\u00f6\u0001\u0000\u0000\u0000&\u00f8"+ + "\u0001\u0000\u0000\u0000(\u00fc\u0001\u0000\u0000\u0000*\u0104\u0001\u0000"+ + "\u0000\u0000,\u0110\u0001\u0000\u0000\u0000.\u0112\u0001\u0000\u0000\u0000"+ + "0\u0117\u0001\u0000\u0000\u00002\u011b\u0001\u0000\u0000\u00004\u011d"+ + "\u0001\u0000\u0000\u00006\u0120\u0001\u0000\u0000\u00008\u0125\u0001\u0000"+ + "\u0000\u0000:\u0127\u0001\u0000\u0000\u0000<\u012a\u0001\u0000\u0000\u0000"+ + ">\u012f\u0001\u0000\u0000\u0000@\u013f\u0001\u0000\u0000\u0000B\u0143"+ + "\u0001\u0000\u0000\u0000D\u0145\u0001\u0000\u0000\u0000F\u0150\u0001\u0000"+ + "\u0000\u0000H\u0163\u0001\u0000\u0000\u0000J\u0165\u0001\u0000\u0000\u0000"+ + "L\u016a\u0001\u0000\u0000\u0000N\u017b\u0001\u0000\u0000\u0000P\u017f"+ + "\u0001\u0000\u0000\u0000R\u0185\u0001\u0000\u0000\u0000T\u0187\u0001\u0000"+ + "\u0000\u0000V\u0189\u0001\u0000\u0000\u0000XZ\u0003\u0002\u0001\u0000"+ + "YX\u0001\u0000\u0000\u0000Z[\u0001\u0000\u0000\u0000[Y\u0001\u0000\u0000"+ + "\u0000[\\\u0001\u0000\u0000\u0000\\\u0001\u0001\u0000\u0000\u0000]_\u0005"+ + "\u0007\u0000\u0000^]\u0001\u0000\u0000\u0000^_\u0001\u0000\u0000\u0000"+ + "_`\u0001\u0000\u0000\u0000`a\u0005#\u0000\u0000ab\u0005/\u0000\u0000b"+ + "f\u0005\u001f\u0000\u0000ce\u0003\u0004\u0002\u0000dc\u0001\u0000\u0000"+ + "\u0000eh\u0001\u0000\u0000\u0000fd\u0001\u0000\u0000\u0000fg\u0001\u0000"+ + "\u0000\u0000gi\u0001\u0000\u0000\u0000hf\u0001\u0000\u0000\u0000ij\u0005"+ + " \u0000\u0000j\u0003\u0001\u0000\u0000\u0000ko\u0003\u0006\u0003\u0000"+ + "lo\u0003\b\u0004\u0000mo\u0003\n\u0005\u0000nk\u0001\u0000\u0000\u0000"+ + "nl\u0001\u0000\u0000\u0000nm\u0001\u0000\u0000\u0000o\u0005\u0001\u0000"+ + "\u0000\u0000pr\u0005\u0007\u0000\u0000qp\u0001\u0000\u0000\u0000qr\u0001"+ + "\u0000\u0000\u0000rs\u0001\u0000\u0000\u0000st\u0005/\u0000\u0000tv\u0005"+ + "\u001d\u0000\u0000uw\u0003\f\u0006\u0000vu\u0001\u0000\u0000\u0000vw\u0001"+ + "\u0000\u0000\u0000wx\u0001\u0000\u0000\u0000xy\u0005\u001e\u0000\u0000"+ + "yz\u0003\u0014\n\u0000z\u0007\u0001\u0000\u0000\u0000{}\u0005\u0007\u0000"+ + "\u0000|{\u0001\u0000\u0000\u0000|}\u0001\u0000\u0000\u0000}~\u0001\u0000"+ + "\u0000\u0000~\u007f\u0003R)\u0000\u007f\u0080\u0005/\u0000\u0000\u0080"+ + "\u0081\u0005!\u0000\u0000\u0081\t\u0001\u0000\u0000\u0000\u0082\u0083"+ + "\u0005\b\u0000\u0000\u0083\u0093\u0003\u0014\n\u0000\u0084\u0086\u0005"+ + "\u0007\u0000\u0000\u0085\u0084\u0001\u0000\u0000\u0000\u0085\u0086\u0001"+ + "\u0000\u0000\u0000\u0086\u0089\u0001\u0000\u0000\u0000\u0087\u008a\u0003"+ + "R)\u0000\u0088\u008a\u0005\u0003\u0000\u0000\u0089\u0087\u0001\u0000\u0000"+ + "\u0000\u0089\u0088\u0001\u0000\u0000\u0000\u008a\u008b\u0001\u0000\u0000"+ + "\u0000\u008b\u008c\u0005/\u0000\u0000\u008c\u008e\u0005\u001d\u0000\u0000"+ + "\u008d\u008f\u0003\f\u0006\u0000\u008e\u008d\u0001\u0000\u0000\u0000\u008e"+ + "\u008f\u0001\u0000\u0000\u0000\u008f\u0090\u0001\u0000\u0000\u0000\u0090"+ + "\u0091\u0005\u001e\u0000\u0000\u0091\u0093\u0003\u0014\n\u0000\u0092\u0082"+ + "\u0001\u0000\u0000\u0000\u0092\u0085\u0001\u0000\u0000\u0000\u0093\u000b"+ + "\u0001\u0000\u0000\u0000\u0094\u0099\u0003\u000e\u0007\u0000\u0095\u0096"+ + "\u0005\"\u0000\u0000\u0096\u0098\u0003\u000e\u0007\u0000\u0097\u0095\u0001"+ + "\u0000\u0000\u0000\u0098\u009b\u0001\u0000\u0000\u0000\u0099\u0097\u0001"+ + "\u0000\u0000\u0000\u0099\u009a\u0001\u0000\u0000\u0000\u009a\r\u0001\u0000"+ + "\u0000\u0000\u009b\u0099\u0001\u0000\u0000\u0000\u009c\u009d\u0003R)\u0000"+ + "\u009d\u009e\u0005/\u0000\u0000\u009e\u000f\u0001\u0000\u0000\u0000\u009f"+ + "\u00a4\u0003*\u0015\u0000\u00a0\u00a1\u0005\"\u0000\u0000\u00a1\u00a3"+ + "\u0003*\u0015\u0000\u00a2\u00a0\u0001\u0000\u0000\u0000\u00a3\u00a6\u0001"+ + "\u0000\u0000\u0000\u00a4\u00a2\u0001\u0000\u0000\u0000\u00a4\u00a5\u0001"+ + "\u0000\u0000\u0000\u00a5\u00a8\u0001\u0000\u0000\u0000\u00a6\u00a4\u0001"+ + "\u0000\u0000\u0000\u00a7\u009f\u0001\u0000\u0000\u0000\u00a7\u00a8\u0001"+ + "\u0000\u0000\u0000\u00a8\u0011\u0001\u0000\u0000\u0000\u00a9\u00aa\u0003"+ + "\u0016\u000b\u0000\u00aa\u00ab\u0005!\u0000\u0000\u00ab\u00b7\u0001\u0000"+ + "\u0000\u0000\u00ac\u00ad\u0003\u0018\f\u0000\u00ad\u00ae\u0005!\u0000"+ + "\u0000\u00ae\u00b7\u0001\u0000\u0000\u0000\u00af\u00b7\u0003\u0014\n\u0000"+ + "\u00b0\u00b7\u0003\u001a\r\u0000\u00b1\u00b7\u0003\u001c\u000e\u0000\u00b2"+ + "\u00b7\u0003\u001e\u000f\u0000\u00b3\u00b4\u0003$\u0012\u0000\u00b4\u00b5"+ + "\u0005!\u0000\u0000\u00b5\u00b7\u0001\u0000\u0000\u0000\u00b6\u00a9\u0001"+ + "\u0000\u0000\u0000\u00b6\u00ac\u0001\u0000\u0000\u0000\u00b6\u00af\u0001"+ + "\u0000\u0000\u0000\u00b6\u00b0\u0001\u0000\u0000\u0000\u00b6\u00b1\u0001"+ + "\u0000\u0000\u0000\u00b6\u00b2\u0001\u0000\u0000\u0000\u00b6\u00b3\u0001"+ + "\u0000\u0000\u0000\u00b7\u0013\u0001\u0000\u0000\u0000\u00b8\u00bc\u0005"+ + "\u001f\u0000\u0000\u00b9\u00bb\u0003\u0012\t\u0000\u00ba\u00b9\u0001\u0000"+ + "\u0000\u0000\u00bb\u00be\u0001\u0000\u0000\u0000\u00bc\u00ba\u0001\u0000"+ + "\u0000\u0000\u00bc\u00bd\u0001\u0000\u0000\u0000\u00bd\u00bf\u0001\u0000"+ + "\u0000\u0000\u00be\u00bc\u0001\u0000\u0000\u0000\u00bf\u00c0\u0005 \u0000"+ + "\u0000\u00c0\u0015\u0001\u0000\u0000\u0000\u00c1\u00c3\u0005)\u0000\u0000"+ + "\u00c2\u00c4\u0003*\u0015\u0000\u00c3\u00c2\u0001\u0000\u0000\u0000\u00c3"+ + "\u00c4\u0001\u0000\u0000\u0000\u00c4\u0017\u0001\u0000\u0000\u0000\u00c5"+ + "\u00c6\u0003R)\u0000\u00c6\u00c9\u0005/\u0000\u0000\u00c7\u00c8\u0005"+ + "\r\u0000\u0000\u00c8\u00ca\u0003*\u0015\u0000\u00c9\u00c7\u0001\u0000"+ + "\u0000\u0000\u00c9\u00ca\u0001\u0000\u0000\u0000\u00ca\u0019\u0001\u0000"+ + "\u0000\u0000\u00cb\u00cc\u0005%\u0000\u0000\u00cc\u00cd\u0005\u001d\u0000"+ + "\u0000\u00cd\u00ce\u0003*\u0015\u0000\u00ce\u00cf\u0005\u001e\u0000\u0000"+ + "\u00cf\u00d0\u0003\u0014\n\u0000\u00d0\u001b\u0001\u0000\u0000\u0000\u00d1"+ + "\u00d2\u0005(\u0000\u0000\u00d2\u00d5\u0005\u001d\u0000\u0000\u00d3\u00d6"+ + "\u0003$\u0012\u0000\u00d4\u00d6\u0003\u0018\f\u0000\u00d5\u00d3\u0001"+ + "\u0000\u0000\u0000\u00d5\u00d4\u0001\u0000\u0000\u0000\u00d6\u00d7\u0001"+ + "\u0000\u0000\u0000\u00d7\u00d9\u0005!\u0000\u0000\u00d8\u00da\u0003*\u0015"+ + "\u0000\u00d9\u00d8\u0001\u0000\u0000\u0000\u00d9\u00da\u0001\u0000\u0000"+ + "\u0000\u00da\u00db\u0001\u0000\u0000\u0000\u00db\u00dd\u0005!\u0000\u0000"+ + "\u00dc\u00de\u0003$\u0012\u0000\u00dd\u00dc\u0001\u0000\u0000\u0000\u00dd"+ + "\u00de\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df"+ + "\u00e0\u0005\u001e\u0000\u0000\u00e0\u00e1\u0003\u0014\n\u0000\u00e1\u001d"+ + "\u0001\u0000\u0000\u0000\u00e2\u00e6\u0003 \u0010\u0000\u00e3\u00e5\u0003"+ + "\"\u0011\u0000\u00e4\u00e3\u0001\u0000\u0000\u0000\u00e5\u00e8\u0001\u0000"+ + "\u0000\u0000\u00e6\u00e4\u0001\u0000\u0000\u0000\u00e6\u00e7\u0001\u0000"+ + "\u0000\u0000\u00e7\u001f\u0001\u0000\u0000\u0000\u00e8\u00e6\u0001\u0000"+ + "\u0000\u0000\u00e9\u00ea\u0005&\u0000\u0000\u00ea\u00eb\u0005\u001d\u0000"+ + "\u0000\u00eb\u00ec\u0003*\u0015\u0000\u00ec\u00ed\u0005\u001e\u0000\u0000"+ + "\u00ed\u00ee\u0003\u0014\n\u0000\u00ee!\u0001\u0000\u0000\u0000\u00ef"+ + "\u00f0\u0005\'\u0000\u0000\u00f0\u00f1\u0003\u0014\n\u0000\u00f1#\u0001"+ + "\u0000\u0000\u0000\u00f2\u00f7\u0003&\u0013\u0000\u00f3\u00f7\u0003(\u0014"+ + "\u0000\u00f4\u00f7\u0003L&\u0000\u00f5\u00f7\u00030\u0018\u0000\u00f6"+ + "\u00f2\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001\u0000\u0000\u0000\u00f6"+ + "\u00f4\u0001\u0000\u0000\u0000\u00f6\u00f5\u0001\u0000\u0000\u0000\u00f7"+ + "%\u0001\u0000\u0000\u0000\u00f8\u00f9\u0003>\u001f\u0000\u00f9\u00fa\u0005"+ + "\r\u0000\u0000\u00fa\u00fb\u0003*\u0015\u0000\u00fb\'\u0001\u0000\u0000"+ + "\u0000\u00fc\u00fd\u0005*\u0000\u0000\u00fd\u00fe\u0005/\u0000\u0000\u00fe"+ + "\u00ff\u0005\u001d\u0000\u0000\u00ff\u0100\u0003\u0010\b\u0000\u0100\u0101"+ + "\u0005\u001e\u0000\u0000\u0101)\u0001\u0000\u0000\u0000\u0102\u0105\u0003"+ + ",\u0016\u0000\u0103\u0105\u0003B!\u0000\u0104\u0102\u0001\u0000\u0000"+ + "\u0000\u0104\u0103\u0001\u0000\u0000\u0000\u0105+\u0001\u0000\u0000\u0000"+ + "\u0106\u0111\u0005$\u0000\u0000\u0107\u0111\u0005/\u0000\u0000\u0108\u0111"+ + "\u0003@ \u0000\u0109\u0111\u0003T*\u0000\u010a\u0111\u0003.\u0017\u0000"+ + "\u010b\u0111\u0003$\u0012\u0000\u010c\u010d\u0005\u001d\u0000\u0000\u010d"+ + "\u010e\u0003*\u0015\u0000\u010e\u010f\u0005\u001e\u0000\u0000\u010f\u0111"+ + "\u0001\u0000\u0000\u0000\u0110\u0106\u0001\u0000\u0000\u0000\u0110\u0107"+ + "\u0001\u0000\u0000\u0000\u0110\u0108\u0001\u0000\u0000\u0000\u0110\u0109"+ + "\u0001\u0000\u0000\u0000\u0110\u010a\u0001\u0000\u0000\u0000\u0110\u010b"+ + "\u0001\u0000\u0000\u0000\u0110\u010c\u0001\u0000\u0000\u0000\u0111-\u0001"+ + "\u0000\u0000\u0000\u0112\u0113\u0005\u0019\u0000\u0000\u0113\u0114\u0003"+ + "*\u0015\u0000\u0114/\u0001\u0000\u0000\u0000\u0115\u0118\u00032\u0019"+ + "\u0000\u0116\u0118\u00038\u001c\u0000\u0117\u0115\u0001\u0000\u0000\u0000"+ + "\u0117\u0116\u0001\u0000\u0000\u0000\u01181\u0001\u0000\u0000\u0000\u0119"+ + "\u011c\u00034\u001a\u0000\u011a\u011c\u00036\u001b\u0000\u011b\u0119\u0001"+ + "\u0000\u0000\u0000\u011b\u011a\u0001\u0000\u0000\u0000\u011c3\u0001\u0000"+ + "\u0000\u0000\u011d\u011e\u0005\u0001\u0000\u0000\u011e\u011f\u0003>\u001f"+ + "\u0000\u011f5\u0001\u0000\u0000\u0000\u0120\u0121\u0003>\u001f\u0000\u0121"+ + "\u0122\u0005\u0001\u0000\u0000\u01227\u0001\u0000\u0000\u0000\u0123\u0126"+ + "\u0003:\u001d\u0000\u0124\u0126\u0003<\u001e\u0000\u0125\u0123\u0001\u0000"+ + "\u0000\u0000\u0125\u0124\u0001\u0000\u0000\u0000\u01269\u0001\u0000\u0000"+ + "\u0000\u0127\u0128\u0005\u0002\u0000\u0000\u0128\u0129\u0003>\u001f\u0000"+ + "\u0129;\u0001\u0000\u0000\u0000\u012a\u012b\u0003>\u001f\u0000\u012b\u012c"+ + "\u0005\u0002\u0000\u0000\u012c=\u0001\u0000\u0000\u0000\u012d\u0130\u0005"+ + "/\u0000\u0000\u012e\u0130\u0003@ \u0000\u012f\u012d\u0001\u0000\u0000"+ + "\u0000\u012f\u012e\u0001\u0000\u0000\u0000\u0130?\u0001\u0000\u0000\u0000"+ + "\u0131\u0132\u0005$\u0000\u0000\u0132\u0133\u0005\u001c\u0000\u0000\u0133"+ + "\u0140\u0005/\u0000\u0000\u0134\u0135\u0005$\u0000\u0000\u0135\u0137\u0005"+ + "\u001c\u0000\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0136\u0137\u0001"+ + "\u0000\u0000\u0000\u0137\u013a\u0001\u0000\u0000\u0000\u0138\u0139\u0005"+ + "/\u0000\u0000\u0139\u013b\u0005\u001c\u0000\u0000\u013a\u0138\u0001\u0000"+ + "\u0000\u0000\u013b\u013c\u0001\u0000\u0000\u0000\u013c\u013a\u0001\u0000"+ + "\u0000\u0000\u013c\u013d\u0001\u0000\u0000\u0000\u013d\u013e\u0001\u0000"+ + "\u0000\u0000\u013e\u0140\u0005/\u0000\u0000\u013f\u0131\u0001\u0000\u0000"+ + "\u0000\u013f\u0136\u0001\u0000\u0000\u0000\u0140A\u0001\u0000\u0000\u0000"+ + "\u0141\u0144\u0003D\"\u0000\u0142\u0144\u0003J%\u0000\u0143\u0141\u0001"+ + "\u0000\u0000\u0000\u0143\u0142\u0001\u0000\u0000\u0000\u0144C\u0001\u0000"+ + "\u0000\u0000\u0145\u0146\u0006\"\uffff\uffff\u0000\u0146\u0147\u0003F"+ + "#\u0000\u0147\u014d\u0001\u0000\u0000\u0000\u0148\u0149\n\u0002\u0000"+ + "\u0000\u0149\u014a\u0005\n\u0000\u0000\u014a\u014c\u0003F#\u0000\u014b"+ + "\u0148\u0001\u0000\u0000\u0000\u014c\u014f\u0001\u0000\u0000\u0000\u014d"+ + "\u014b\u0001\u0000\u0000\u0000\u014d\u014e\u0001\u0000\u0000\u0000\u014e"+ + "E\u0001\u0000\u0000\u0000\u014f\u014d\u0001\u0000\u0000\u0000\u0150\u0151"+ + "\u0006#\uffff\uffff\u0000\u0151\u0152\u0003H$\u0000\u0152\u0158\u0001"+ + "\u0000\u0000\u0000\u0153\u0154\n\u0002\u0000\u0000\u0154\u0155\u0005\t"+ + "\u0000\u0000\u0155\u0157\u0003H$\u0000\u0156\u0153\u0001\u0000\u0000\u0000"+ + "\u0157\u015a\u0001\u0000\u0000\u0000\u0158\u0156\u0001\u0000\u0000\u0000"+ + "\u0158\u0159\u0001\u0000\u0000\u0000\u0159G\u0001\u0000\u0000\u0000\u015a"+ + "\u0158\u0001\u0000\u0000\u0000\u015b\u0164\u0005,\u0000\u0000\u015c\u0164"+ + "\u0005/\u0000\u0000\u015d\u0164\u0003@ \u0000\u015e\u015f\u0003L&\u0000"+ + "\u015f\u0160\u0005\u001d\u0000\u0000\u0160\u0161\u0003D\"\u0000\u0161"+ + "\u0162\u0005\u001e\u0000\u0000\u0162\u0164\u0001\u0000\u0000\u0000\u0163"+ + "\u015b\u0001\u0000\u0000\u0000\u0163\u015c\u0001\u0000\u0000\u0000\u0163"+ + "\u015d\u0001\u0000\u0000\u0000\u0163\u015e\u0001\u0000\u0000\u0000\u0164"+ + "I\u0001\u0000\u0000\u0000\u0165\u0166\u0003,\u0016\u0000\u0166\u0167\u0003"+ + "V+\u0000\u0167\u0168\u0003*\u0015\u0000\u0168K\u0001\u0000\u0000\u0000"+ + "\u0169\u016b\u0003N\'\u0000\u016a\u0169\u0001\u0000\u0000\u0000\u016a"+ + "\u016b\u0001\u0000\u0000\u0000\u016b\u016f\u0001\u0000\u0000\u0000\u016c"+ + "\u016e\u0003P(\u0000\u016d\u016c\u0001\u0000\u0000\u0000\u016e\u0171\u0001"+ + "\u0000\u0000\u0000\u016f\u016d\u0001\u0000\u0000\u0000\u016f\u0170\u0001"+ + "\u0000\u0000\u0000\u0170\u0172\u0001\u0000\u0000\u0000\u0171\u016f\u0001"+ + "\u0000\u0000\u0000\u0172\u0173\u0005/\u0000\u0000\u0173\u0174\u0005\u001d"+ + "\u0000\u0000\u0174\u0175\u0003\u0010\b\u0000\u0175\u0176\u0005\u001e\u0000"+ + "\u0000\u0176M\u0001\u0000\u0000\u0000\u0177\u017c\u0005$\u0000\u0000\u0178"+ + "\u017c\u0003@ \u0000\u0179\u017c\u0003(\u0014\u0000\u017a\u017c\u0005"+ + "/\u0000\u0000\u017b\u0177\u0001\u0000\u0000\u0000\u017b\u0178\u0001\u0000"+ + "\u0000\u0000\u017b\u0179\u0001\u0000\u0000\u0000\u017b\u017a\u0001\u0000"+ + "\u0000\u0000\u017c\u017d\u0001\u0000\u0000\u0000\u017d\u017e\u0005\u001c"+ + "\u0000\u0000\u017eO\u0001\u0000\u0000\u0000\u017f\u0180\u0005/\u0000\u0000"+ + "\u0180\u0181\u0005\u001d\u0000\u0000\u0181\u0182\u0003\u0010\b\u0000\u0182"+ + "\u0183\u0005\u001e\u0000\u0000\u0183\u0184\u0005\u001c\u0000\u0000\u0184"+ + "Q\u0001\u0000\u0000\u0000\u0185\u0186\u0007\u0000\u0000\u0000\u0186S\u0001"+ + "\u0000\u0000\u0000\u0187\u0188\u0007\u0001\u0000\u0000\u0188U\u0001\u0000"+ + "\u0000\u0000\u0189\u018a\u0007\u0002\u0000\u0000\u018aW\u0001\u0000\u0000"+ + "\u0000\'[^fnqv|\u0085\u0089\u008e\u0092\u0099\u00a4\u00a7\u00b6\u00bc"+ + "\u00c3\u00c9\u00d5\u00d9\u00dd\u00e6\u00f6\u0104\u0110\u0117\u011b\u0125"+ + "\u012f\u0136\u013c\u013f\u0143\u014d\u0158\u0163\u016a\u016f\u017b"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/parser/generated/SimpleJavaVisitor.java b/src/main/java/parser/generated/SimpleJavaVisitor.java index beefef9..3b31f92 100644 --- a/src/main/java/parser/generated/SimpleJavaVisitor.java +++ b/src/main/java/parser/generated/SimpleJavaVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/Users/janni/Desktop/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 +// Generated from C:/Users/Maxi/Documents/DHBW/Compilerbau/NichtHaskell2.0/src/main/java/parser/grammar/SimpleJava.g4 by ANTLR 4.13.1 package parser.generated; import org.antlr.v4.runtime.tree.ParseTreeVisitor; @@ -71,11 +71,11 @@ public interface SimpleJavaVisitor extends ParseTreeVisitor { */ T visitStatement(SimpleJavaParser.StatementContext ctx); /** - * Visit a parse tree produced by {@link SimpleJavaParser#blockStatement}. + * Visit a parse tree produced by {@link SimpleJavaParser#block}. * @param ctx the parse tree * @return the visitor result */ - T visitBlockStatement(SimpleJavaParser.BlockStatementContext ctx); + T visitBlock(SimpleJavaParser.BlockContext ctx); /** * Visit a parse tree produced by {@link SimpleJavaParser#returnStatement}. * @param ctx the parse tree @@ -94,12 +94,6 @@ public interface SimpleJavaVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitWhileStatement(SimpleJavaParser.WhileStatementContext ctx); - /** - * Visit a parse tree produced by {@link SimpleJavaParser#doWhileStatement}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitDoWhileStatement(SimpleJavaParser.DoWhileStatementContext ctx); /** * Visit a parse tree produced by {@link SimpleJavaParser#forStatement}. * @param ctx the parse tree @@ -118,12 +112,6 @@ public interface SimpleJavaVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitIfStatement(SimpleJavaParser.IfStatementContext ctx); - /** - * Visit a parse tree produced by {@link SimpleJavaParser#elseIfStatement}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitElseIfStatement(SimpleJavaParser.ElseIfStatementContext ctx); /** * Visit a parse tree produced by {@link SimpleJavaParser#elseStatement}. * @param ctx the parse tree diff --git a/src/main/java/semantic/Scope.java b/src/main/java/semantic/Scope.java index 60e9d2b..39dd2f8 100644 --- a/src/main/java/semantic/Scope.java +++ b/src/main/java/semantic/Scope.java @@ -1,27 +1,35 @@ package semantic; -import oldAst.type.TypeNode; +import ast.type.type.*; +import semantic.exeptions.AlreadyDeclearedException; import java.util.HashMap; import java.util.Stack; public class Scope { - private Stack> localVars; + private Stack> localVars; public Scope() { - localVars = new Stack>(); + localVars = new Stack>(); } - public void addLocalVar(String name, TypeNode type) { + public void addLocalVar(String name, ITypeNode type) { if (this.contains(name)) { - throw new RuntimeException("Variable " + name + " already exists in this scope"); + throw new AlreadyDeclearedException("Variable " + name + " already exists in this scope"); } localVars.peek().put(name, type); } + public ITypeNode getLocalVar(String name) { + for (HashMap map : localVars) { + return map.get(name); + } + return null; + } + public boolean contains(String name) { - for (HashMap map : localVars) { + for (HashMap map : localVars) { if (map.containsKey(name)) { return true; } @@ -30,7 +38,7 @@ public class Scope { } public void pushScope() { - localVars.push(new HashMap()); + localVars.push(new HashMap()); } public void popScope() { diff --git a/src/main/java/semantic/SemanticAnalyzer.java b/src/main/java/semantic/SemanticAnalyzer.java index 3bce422..191e3a9 100644 --- a/src/main/java/semantic/SemanticAnalyzer.java +++ b/src/main/java/semantic/SemanticAnalyzer.java @@ -1,40 +1,44 @@ package semantic; -import oldAst.*; -import oldAst.expression.*; -import oldAst.member.FieldNode; -import oldAst.member.MemberNode; - -import oldAst.member.MethodNode; -import oldAst.parameter.ParameterListNode; -import oldAst.parameter.ParameterNode; -import oldAst.statement.*; -import oldAst.type.ReferenceTypeNode; -import oldAst.expression.This; - import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Objects; -import oldAst.type.BaseTypeNode; -import oldAst.type.TypeNode; +import ast.*; +import ast.block.BlockNode; +import ast.expression.IExpressionNode; +import ast.expression.binaryexpression.*; +import ast.expression.unaryexpression.UnaryExpressionNode; +import ast.member.*; +import ast.parameter.ParameterNode; +import ast.statement.*; +import ast.statement.ifstatement.ElseStatementNode; +import ast.statement.ifstatement.IfElseStatementNode; +import ast.statement.ifstatement.IfStatementNode; +import ast.statement.statementexpression.AssignStatementExpressionNode; +import ast.statement.statementexpression.AssignableExpressionNode; +import ast.statement.statementexpression.NewDeclarationStatementExpressionNode; +import ast.statement.statementexpression.crementExpression.DecrementExpressionNode; +import ast.statement.statementexpression.crementExpression.IncrementExpressionNode; +import ast.statement.statementexpression.methodcallstatementnexpression.MethodCallStatementExpressionNode; +import ast.type.type.*; import semantic.context.Context; -import semantic.exeptions.AlreadyDeclearedException; -import semantic.exeptions.NotDeclearedException; -import semantic.exeptions.TypeMismatchException; +import semantic.exeptions.*; import typechecker.TypeCheckResult; public class SemanticAnalyzer implements SemanticVisitor { - private static HashMap currentFields = new HashMap<>(); + private static HashMap currentFields = new HashMap<>(); public static ArrayList errors = new ArrayList<>(); - private Context context; + private static Context context; private static Scope currentScope; private static ClassNode currentClass; + private static ITypeNode currentNullType; + private ITypeNode currentMethodReturnType; public static ASTNode generateTast(ASTNode node) { SemanticAnalyzer semanticCheck = new SemanticAnalyzer(); @@ -50,7 +54,7 @@ public class SemanticAnalyzer implements SemanticVisitor { return null; } - public static void clearAnalyzier(){ + public static void clearAnalyzer() { currentFields.clear(); errors.clear(); currentScope = null; @@ -87,13 +91,10 @@ public class SemanticAnalyzer implements SemanticVisitor { valid = valid && result.isValid(); } else if (memberNode instanceof MethodNode methodNode) { //Methods - for(MethodNode methode : currentClass.getMethods()){ - if(methode.equals(methodNode)) + for (MethodNode methode : currentClass.getMethods()) { + if (methode.equals(methodNode)) break; - if(methode.isSame(methodNode)){ - errors.add(new AlreadyDeclearedException("This method has already been declared")); - valid = false; - } + } var result = methodNode.accept(this); valid = valid && result.isValid(); @@ -106,38 +107,59 @@ public class SemanticAnalyzer implements SemanticVisitor { @Override public TypeCheckResult analyze(MethodNode methodNode) { - var valid = true; + if (methodNode instanceof ConstructorNode) { + return new TypeCheckResult(true, new BaseType(TypeEnum.VOID)); + } else { - currentScope.pushScope(); + var valid = true; - //Parameter - ParameterListNode parameterListNode = methodNode.parameters; - if (parameterListNode != null) { - List parameters = parameterListNode.parameters; - for (ParameterNode parameter : parameters) { - if (currentScope.contains(parameter.identifier)) { - errors.add(new AlreadyDeclearedException("Duplicated Parameter " + parameter.identifier)); - return new TypeCheckResult(false, null); - } else { - currentScope.addLocalVar(parameter.identifier, parameter.type); + for (var otherMethod : currentClass.getMethods()) { + if (Objects.equals(otherMethod, methodNode)) + break; + if (otherMethod.isSame(methodNode)) { + errors.add(new AlreadyDeclearedException( + "Method " + methodNode.getIdentifier() + " is already defined in class " + + currentClass.identifier)); + valid = false; } } - } - //Statements - List statements = methodNode.statements; - for (StatementNode statement : statements) { - if (statement instanceof AssignmentStatementNode assignmentStatementNode) { - var result = assignmentStatementNode.accept(this); - valid = valid && result.isValid(); - } else if (statement instanceof VariableDeclarationStatementNode variableDeclarationStatementNode) { - var result = variableDeclarationStatementNode.accept(this); + currentScope.pushScope(); + for (var parameter : methodNode.getParameters()) { + var result = parameter.accept(this); valid = valid && result.isValid(); + try { + currentScope.addLocalVar(parameter.identifier, parameter.type); + } catch (AlreadyDeclearedException e) { + errors.add(new AlreadyDeclearedException(parameter.identifier)); + } + } - } + // Check if this method is already declared - currentScope.popScope(); - return new TypeCheckResult(valid, null); + currentMethodReturnType = methodNode.getType(); + currentNullType = currentMethodReturnType; // Solange nicht in einem Assign oder Methoden-Aufruf dieser Typ + + ITypeNode resultType = new BaseType(TypeEnum.VOID); + + // gesetzt ist, ist dieser der Rückgabewert der Methode + var result = methodNode.block.accept(this); + valid = valid && result.isValid(); + currentScope.popScope(); + resultType = result.getType(); + + if (resultType == null) { + resultType = new BaseType(TypeEnum.VOID); + } + if (!resultType.equals(methodNode.getType())) { + errors.add(new TypeMismatchException("Method-Declaration " + methodNode.getIdentifier() + " with type " + + methodNode.getType() + " has at least one Mismatching return Type:")); + valid = false; + } + + return new TypeCheckResult(valid, resultType); + + } } @Override @@ -151,80 +173,6 @@ public class SemanticAnalyzer implements SemanticVisitor { return new TypeCheckResult(true, null); } - @Override - public TypeCheckResult analyze(AssignmentStatementNode assignmentStatementNode) { - boolean valid = true; - ExpressionNode expressionNodeLeft = assignmentStatementNode.expressionLeft; - var resultLeft = expressionNodeLeft.accept(this); - valid = valid && resultLeft.isValid(); - ExpressionNode expressionNodeRight = assignmentStatementNode.expressionRight; - var resultRight = expressionNodeRight.accept(this); - valid = valid && resultRight.isValid(); - - if(Objects.equals(resultLeft.getType(), resultRight.getType())){ - System.out.println("SAME TYPE"); - } else { - errors.add(new TypeMismatchException("Type mismatch")); - valid = false; - } - - return new TypeCheckResult(valid, null); - } - - @Override - public TypeCheckResult analyze(BinaryExpressionNode toCheck) { - boolean valid = true; - ExpressionNode left = toCheck.left; - var resultLeft = left.accept(this); - ExpressionNode right = toCheck.right; - var resultRight = right.accept(this); - - switch (toCheck.operator) { - case ASSIGNMENT: - if(Objects.equals(resultRight.getType(), resultLeft.getType())){ - System.out.println("Correct Type"); - } else { - valid = false; - errors.add(new TypeMismatchException("Type Mismatch " + resultLeft.getType() + " and " + resultRight.getType())); - } - break; - case DOT: - return new TypeCheckResult(true, resultRight.getType()); - default: - throw new RuntimeException("Unexpected operator: " + toCheck.operator); - } - - return new TypeCheckResult(valid, null); - } - - @Override - public TypeCheckResult analyze(IdentifierExpressionNode toCheck) { - if(toCheck.name == "this"){ - return new TypeCheckResult(true, null); - } else if (currentFields.get(toCheck.name) == null) { - errors.add(new AlreadyDeclearedException("Not declared " + toCheck.name + " in this scope")); - return new TypeCheckResult(false, null); - } else { - return new TypeCheckResult(false, currentFields.get(toCheck.name)); - } - } - - @Override - public TypeCheckResult analyze(UnaryExpressionNode toCheck) { - return null; - } - - @Override - public TypeCheckResult analyze(VariableDeclarationStatementNode toCheck) { - if (currentScope.contains(toCheck.identifier)) { - errors.add(new AlreadyDeclearedException("Already declared " + toCheck.identifier + " in this scope")); - return new TypeCheckResult(false, null); - } else { - currentScope.addLocalVar(toCheck.identifier, toCheck.type); - } - return new TypeCheckResult(true, null); - } - @Override public TypeCheckResult analyze(IfStatementNode toCheck) { return null; @@ -232,7 +180,9 @@ public class SemanticAnalyzer implements SemanticVisitor { @Override public TypeCheckResult analyze(ReturnStatementNode toCheck) { - return null; + + var result = toCheck.expression.accept(this); + return new TypeCheckResult(true, result.getType()); } @Override @@ -241,39 +191,175 @@ public class SemanticAnalyzer implements SemanticVisitor { } @Override - public TypeCheckResult analyze(LiteralNode toCheck) { - return new TypeCheckResult(true, toCheck.getType()); + public TypeCheckResult analyze(ParameterNode toCheck) { + + + return new TypeCheckResult(true, null); } @Override - public TypeCheckResult analyze(InstVar toCheck) { - boolean valid = true; - - var result = toCheck.expression.accept(this); - - if(result.getType() instanceof BaseTypeNode){ - throw new RuntimeException("BaseType has no Methods or Fields"); - } else { - //Get typ of Field - - var type = (ReferenceTypeNode)result.getType(); - var classContext = context.getClass(type.getIdentifier()); - - if(classContext == null){ - errors.add(new NotDeclearedException("Not declared " + type.getIdentifier() + " in this scope")); - return new TypeCheckResult(false, null); - } else { - var field = classContext.getField(toCheck.identifier); - - return new TypeCheckResult(valid, field.getType()); + public TypeCheckResult analyze(BlockNode blockNode) { + ITypeNode blockReturnType = null; + for (IStatementNode statementNode : blockNode.statements) { + var result = statementNode.accept(this); + if(result.getType() != null){ + if(blockReturnType == null){ + blockReturnType = result.getType(); + } else { + errors.add(new MultipleReturnTypes("There are multiple Return types")); + } } } + return new TypeCheckResult(true, blockReturnType); + } + + @Override + public TypeCheckResult analyze(AssignableExpressionNode toCheck) { + return new TypeCheckResult(true, currentFields.get(toCheck.identifier)); } @Override - public TypeCheckResult analyze(This toCheck) { - return new TypeCheckResult(true, toCheck.getType()); + public TypeCheckResult analyze(ElseStatementNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(ForStatementNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(AssignStatementExpressionNode toCheck) { + AssignableExpressionNode assignable = toCheck.assignable; + var oldNullType = currentNullType; + currentNullType = currentFields.get(toCheck.assignable.identifier); + IExpressionNode rExpression = toCheck.expression; + currentNullType = oldNullType; + var valid = true; + + // This check currently handles things like : + /** + * private int i; + * void foo(int i){ + * i = i; + * } + */ + if (assignable.equals(rExpression)) { + errors.add(new TypeMismatchException("Cannot assign to self")); + valid = false; + } + + var lResult = assignable.accept(this); + currentNullType = lResult.getType(); + var rResult = rExpression.accept(this); + + if (!Objects.equals(currentScope.getLocalVar(toCheck.assignable.identifier), rExpression.getType())) { + errors.add(new TypeMismatchException( + "Mismatch types in Assign-Statement: cannot convert from \"" + lResult.getType() + "\" to \"" + + rResult.getType() + "\"")); + valid = false; + } +// else { +// toCheck.setType(assignable.getType()); +// } + valid = valid && lResult.isValid() && rResult.isValid(); + currentNullType = null; + return new TypeCheckResult(valid, null); // return type is null to get the return type sufficently + } + + @Override + public TypeCheckResult analyze(DecrementExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(IfElseStatementNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(MethodCallStatementExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(LocalVariableDeclarationNode localVarDecl) { + var valid = true; + + if (localVarDecl.expression != null) { + TypeCheckResult result = localVarDecl.expression.accept(this); + + var resultType = localVarDecl.expression.getType(); + valid = result.isValid() && valid; + + if (!Objects.equals(resultType, localVarDecl.type)) { + errors.add(new TypeMismatchException( + "Type mismatch: cannot convert from " + resultType + " to " + localVarDecl.type)); + valid = false; + } + + } + + try { + currentScope.addLocalVar(localVarDecl.identifier, localVarDecl.type); + } catch (AlreadyDefinedException e) { + errors.add(new AlreadyDefinedException(e.getMessage())); + valid = false; + } + return new TypeCheckResult(valid, null); + } + + @Override + public TypeCheckResult analyze(NewDeclarationStatementExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(IncrementExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(BinaryExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(CalculationExpressionNode calcNode) { + if (calcNode.calculationExpression != null) { + calcNode.calculationExpression.accept(this); + } + return null; + } + + @Override + public TypeCheckResult analyze(DotExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(DotSubstractionExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(NonCalculationExpressionNode toCheck) { + return null; + } + + @Override + public TypeCheckResult analyze(UnaryExpressionNode unary) { + var valid = true; + + if (currentScope.contains(unary.identifier)) { + return new TypeCheckResult(valid, currentScope.getLocalVar(unary.identifier)); + } else if(currentFields.get(unary.identifier) != null) { + return new TypeCheckResult(valid, currentFields.get(unary.identifier)); + } else { + errors.add(new NotDeclearedException("Var is not Decleared")); + } + return new TypeCheckResult(valid, null); } } \ No newline at end of file diff --git a/src/main/java/semantic/SemanticVisitor.java b/src/main/java/semantic/SemanticVisitor.java index bdb6538..6b6942f 100644 --- a/src/main/java/semantic/SemanticVisitor.java +++ b/src/main/java/semantic/SemanticVisitor.java @@ -1,18 +1,20 @@ package semantic; -import ast.ClassNode; -import ast.expressions.LiteralNode; -import ast.ProgramNode; -import ast.expressions.BinaryExpressionNode; -import ast.expressions.IdentifierExpressionNode; -import ast.expressions.InstVar; -import ast.expressions.UnaryExpressionNode; -import ast.members.FieldNode; -import ast.members.MethodNode; -import ast.statements.*; -import ast.expressions.This; -import ast.statements.IfStatementNode; +import ast.*; +import ast.block.BlockNode; +import ast.expression.binaryexpression.*; +import ast.expression.unaryexpression.UnaryExpressionNode; +import ast.member.*; +import ast.parameter.ParameterNode; +import ast.statement.*; +import ast.statement.ifstatement.*; +import ast.statement.statementexpression.AssignStatementExpressionNode; +import ast.statement.statementexpression.AssignableExpressionNode; +import ast.statement.statementexpression.NewDeclarationStatementExpressionNode; +import ast.statement.statementexpression.crementExpression.DecrementExpressionNode; +import ast.statement.statementexpression.crementExpression.IncrementExpressionNode; +import ast.statement.statementexpression.methodcallstatementnexpression.MethodCallStatementExpressionNode; import typechecker.TypeCheckResult; public interface SemanticVisitor { @@ -25,25 +27,46 @@ public interface SemanticVisitor { TypeCheckResult analyze(FieldNode toCheck); - TypeCheckResult analyze(AssignmentStatementNode toCheck); - - TypeCheckResult analyze(BinaryExpressionNode toCheck); - - TypeCheckResult analyze(IdentifierExpressionNode toCheck); - - TypeCheckResult analyze(UnaryExpressionNode toCheck); - - TypeCheckResult analyze(VariableDeclarationStatementNode toCheck); - TypeCheckResult analyze(IfStatementNode toCheck); TypeCheckResult analyze(ReturnStatementNode toCheck); TypeCheckResult analyze(WhileStatementNode toCheck); - TypeCheckResult analyze(LiteralNode toCheck); + TypeCheckResult analyze(ParameterNode toCheck); - TypeCheckResult analyze(InstVar toCheck); + TypeCheckResult analyze(BlockNode toCheck); + + TypeCheckResult analyze(AssignableExpressionNode toCheck); + + TypeCheckResult analyze(ElseStatementNode toCheck); + + TypeCheckResult analyze(ForStatementNode toCheck); + + TypeCheckResult analyze(AssignStatementExpressionNode toCheck); + + TypeCheckResult analyze(DecrementExpressionNode toCheck); + + TypeCheckResult analyze(IfElseStatementNode toCheck); + + TypeCheckResult analyze(MethodCallStatementExpressionNode toCheck); + + TypeCheckResult analyze(LocalVariableDeclarationNode toCheck); + + TypeCheckResult analyze(NewDeclarationStatementExpressionNode toCheck); + + TypeCheckResult analyze(IncrementExpressionNode toCheck); + + TypeCheckResult analyze(BinaryExpressionNode toCheck); + + TypeCheckResult analyze(CalculationExpressionNode toCheck); + + TypeCheckResult analyze(DotExpressionNode toCheck); + + TypeCheckResult analyze(DotSubstractionExpressionNode toCheck); + + TypeCheckResult analyze(NonCalculationExpressionNode toCheck); + + TypeCheckResult analyze(UnaryExpressionNode toCheck); - TypeCheckResult analyze(This toCheck); } \ No newline at end of file diff --git a/src/main/java/semantic/context/ClassContext.java b/src/main/java/semantic/context/ClassContext.java index 6b0d386..982866f 100644 --- a/src/main/java/semantic/context/ClassContext.java +++ b/src/main/java/semantic/context/ClassContext.java @@ -1,7 +1,7 @@ package semantic.context; -import oldAst.ClassNode; -import oldAst.member.FieldNode; +import ast.ClassNode; +import ast.member.FieldNode; import java.util.HashMap; public class ClassContext { diff --git a/src/main/java/semantic/context/Context.java b/src/main/java/semantic/context/Context.java index 31ba3de..d6431ef 100644 --- a/src/main/java/semantic/context/Context.java +++ b/src/main/java/semantic/context/Context.java @@ -1,6 +1,6 @@ package semantic.context; -import oldAst.ProgramNode; +import ast.ProgramNode; import java.util.HashMap; public class Context { diff --git a/src/main/java/semantic/context/FieldContext.java b/src/main/java/semantic/context/FieldContext.java index 2dad262..18e8cf7 100644 --- a/src/main/java/semantic/context/FieldContext.java +++ b/src/main/java/semantic/context/FieldContext.java @@ -1,20 +1,20 @@ package semantic.context; -import oldAst.member.FieldNode; -import oldAst.type.AccessTypeNode; -import oldAst.type.TypeNode; +import ast.member.FieldNode; +import ast.type.*; +import ast.type.type.*; public class FieldContext { - private AccessTypeNode accessModifier; - private TypeNode type; + private AccessModifierNode accessModifier; + private ITypeNode type; public FieldContext(FieldNode field) { accessModifier = field.accessTypeNode; type = field.type; } - public TypeNode getType() { + public ITypeNode getType() { return type; } diff --git a/src/main/java/semantic/exeptions/AlreadyDefinedException.java b/src/main/java/semantic/exeptions/AlreadyDefinedException.java new file mode 100644 index 0000000..441a5d9 --- /dev/null +++ b/src/main/java/semantic/exeptions/AlreadyDefinedException.java @@ -0,0 +1,9 @@ +package semantic.exeptions; + +public class AlreadyDefinedException extends RuntimeException { + + public AlreadyDefinedException(String message) { + super(message); + } + +} diff --git a/src/main/java/semantic/exeptions/MultipleReturnTypes.java b/src/main/java/semantic/exeptions/MultipleReturnTypes.java new file mode 100644 index 0000000..59f92fa --- /dev/null +++ b/src/main/java/semantic/exeptions/MultipleReturnTypes.java @@ -0,0 +1,9 @@ +package semantic.exeptions; + +public class MultipleReturnTypes extends RuntimeException { + + public MultipleReturnTypes(String message) { + super(message); + } + +} diff --git a/src/main/java/typechecker/TypeCheckResult.java b/src/main/java/typechecker/TypeCheckResult.java index a06d359..f52818d 100644 --- a/src/main/java/typechecker/TypeCheckResult.java +++ b/src/main/java/typechecker/TypeCheckResult.java @@ -1,14 +1,14 @@ package typechecker; -import oldAst.type.TypeNode; +import ast.type.type.ITypeNode; public class TypeCheckResult { private boolean valid; - private TypeNode type; + private ITypeNode type; - public TypeCheckResult(boolean valid, TypeNode type) { + public TypeCheckResult(boolean valid, ITypeNode type) { this.valid = valid; this.type = type; } @@ -17,7 +17,7 @@ public class TypeCheckResult { return valid; } - public TypeNode getType() { + public ITypeNode getType() { return type; } } \ No newline at end of file diff --git a/src/main/resources/CompilerInput.java b/src/main/resources/CompilerInput.java index 1cbe5ca..ba8a8e5 100644 --- a/src/main/resources/CompilerInput.java +++ b/src/main/resources/CompilerInput.java @@ -11,8 +11,7 @@ public class Example { public class Test { public static int testMethod(char x, int a){ - - - + x = x + a; + return x; } } \ No newline at end of file diff --git a/src/test/java/semantic/EndToTAST.java b/src/test/java/semantic/EndToTAST.java new file mode 100644 index 0000000..dc30e0b --- /dev/null +++ b/src/test/java/semantic/EndToTAST.java @@ -0,0 +1,257 @@ +package semantic; + +import ast.ASTNode; +import ast.ProgramNode; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.CharStreams; +import org.antlr.v4.runtime.CommonTokenStream; +import org.antlr.v4.runtime.tree.ParseTree; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import parser.astBuilder.ASTBuilder; +import parser.generated.SimpleJavaLexer; +import parser.generated.SimpleJavaParser; +import semantic.exeptions.AlreadyDeclearedException; +import semantic.exeptions.MultipleReturnTypes; +import semantic.exeptions.NotDeclearedException; +import semantic.exeptions.TypeMismatchException; + +import java.io.IOException; +import java.nio.file.Paths; + +import static org.junit.jupiter.api.Assertions.*; + +public class EndToTAST { + + @BeforeEach + public void setup(){ + SemanticAnalyzer.clearAnalyzer(); + } + + @Test + public void CorrectTest(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/CorrectTest.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); // parse the input + + /* ------------------------- AST builder -> AST ------------------------- */ + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertEquals(SemanticAnalyzer.errors.size(), 0); + assertNotNull(tast); + + } + + @Test + public void notDecleared() { + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/NotDecleared.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); // parse the input + + /* ------------------------- AST builder -> AST ------------------------- */ + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(NotDeclearedException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void typeMismatch(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/TypeMismatchIntBool.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(TypeMismatchException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void parameterAlreadyDecleared(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/ParameterAlreadyDecleared.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(AlreadyDeclearedException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void fieldAlreadyDecleared(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/FieldAlreadyDecleared.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(AlreadyDeclearedException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void typeMismatchRefType(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/TypeMismatchRefType.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(TypeMismatchException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void correctRetType(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/CorrectRetType.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertTrue(SemanticAnalyzer.errors.isEmpty()); + + } + + @Test + public void retTypeMismatch(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/retTypeMismatch.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(TypeMismatchException.class, SemanticAnalyzer.errors.getFirst()); + + } + + @Test + public void multipleRetType(){ + + CharStream codeCharStream = null; + try { + codeCharStream = CharStreams.fromPath(Paths.get("src/test/resources/semantic/endToTAST/MultipleRetTypes.java")); + } catch (IOException e) { + throw new RuntimeException(e); + } + SimpleJavaLexer lexer = new SimpleJavaLexer(codeCharStream); + CommonTokenStream tokenStream = new CommonTokenStream(lexer); + + SimpleJavaParser parser = new SimpleJavaParser(tokenStream); + ParseTree parseTree = parser.program(); + + ASTBuilder astBuilder = new ASTBuilder(); + ProgramNode abstractSyntaxTree = (ProgramNode) astBuilder.visit(parseTree); + + ASTNode tast = SemanticAnalyzer.generateTast(abstractSyntaxTree); + + assertFalse(SemanticAnalyzer.errors.isEmpty()); + assertInstanceOf(MultipleReturnTypes.class, SemanticAnalyzer.errors.getFirst()); + + } + +} diff --git a/src/test/java/semantic/Mocker.java b/src/test/java/semantic/Mocker.java index 8ab9434..1e404af 100644 --- a/src/test/java/semantic/Mocker.java +++ b/src/test/java/semantic/Mocker.java @@ -1,76 +1,103 @@ package semantic; -import oldAst.ClassNode; -import oldAst.expression.LiteralNode; -import oldAst.ProgramNode; -import oldAst.expression.*; -import oldAst.member.FieldNode; -import oldAst.member.MemberNode; -import oldAst.member.MethodNode; -import oldAst.parameter.ParameterListNode; -import oldAst.parameter.ParameterNode; -import oldAst.statement.AssignmentStatementNode; -import oldAst.statement.StatementNode; -import oldAst.type.*; - -import java.util.ArrayList; -import java.util.List; +import ast.*; +import ast.block.BlockNode; +import ast.member.FieldNode; +import ast.member.MethodNode; +import ast.parameter.ParameterNode; +import ast.type.AccessModifierNode; +import ast.type.type.*; public class Mocker { - public static ProgramNode mockCorrectProgrammNode(){ + public static ASTNode mockTwoSameFields(){ + ProgramNode p = new ProgramNode(); - ProgramNode programNode = new ProgramNode(); - List classList = new ArrayList(); - AccessTypeNode accessTypeNode = new AccessTypeNode(EnumAccessTypeNode.PUBLIC); - ClassNode classNode = new ClassNode(accessTypeNode, "testClass"); + ClassNode c = new ClassNode(); + c.identifier = "testClass"; - MemberNode memberNode1 = new FieldNode(accessTypeNode, new BaseTypeNode(EnumTypeNode.INT), "testVar1"); - classNode.members.add(memberNode1); + FieldNode f1 = new FieldNode(new AccessModifierNode("public"), new BaseType(TypeEnum.INT), "a"); - MemberNode memberNode2 = new FieldNode(accessTypeNode, new BaseTypeNode(EnumTypeNode.INT), "objectVar"); - classNode.members.add(memberNode2); + c.members.add(f1); - List parameterNodeList = new ArrayList(); - ParameterNode parameterNode1 = new ParameterNode(new BaseTypeNode(EnumTypeNode.INT), "param1"); - parameterNodeList.add(parameterNode1); - ParameterListNode parameterListNode = new ParameterListNode(parameterNodeList); + FieldNode f2 = new FieldNode(new AccessModifierNode("public"), new BaseType(TypeEnum.INT), "a"); - List statementNodeList = new ArrayList(); - - ExpressionNode expressionNodeLeft = new InstVar(new This("testClass"), "objectVar"); - - LiteralNode expressionNodeRight = new LiteralNode(); - expressionNodeRight.setType(new BaseTypeNode(EnumTypeNode.INT)); - - StatementNode statementNode1 = new AssignmentStatementNode(expressionNodeLeft, expressionNodeRight); - statementNodeList.add(statementNode1); - - MemberNode memberNode3 = new MethodNode(accessTypeNode, new BaseTypeNode(EnumTypeNode.INT), "testVar2",parameterListNode, statementNodeList ); - classNode.members.add(memberNode3); - - classList.add(classNode); - programNode.classes = classList; - - return programNode; + c.members.add(f2); + p.classes.add(c); + return p; } - public static ProgramNode mockFieldNodeAlreadyDeclaredProgrammNode(){ - ProgramNode programNode = new ProgramNode(); - List classList = new ArrayList(); - AccessTypeNode accessTypeNode = new AccessTypeNode(EnumAccessTypeNode.PUBLIC); - ClassNode classNode = new ClassNode(accessTypeNode, "testClass"); + public static ASTNode mockSimpleMethod(){ + ProgramNode p = new ProgramNode(); - MemberNode memberNode1 = new FieldNode(accessTypeNode, new BaseTypeNode(EnumTypeNode.INT), "testVar"); - classNode.members.add(memberNode1); + ClassNode c = new ClassNode(); - MemberNode memberNode2 = new FieldNode(accessTypeNode, new BaseTypeNode(EnumTypeNode.INT), "testVar"); - classNode.members.add(memberNode2); + MethodNode methodNode = new MethodNode(); - classList.add(classNode); - programNode.classes = classList; + //Parameter + ParameterNode parameterNode = new ParameterNode(new BaseType(TypeEnum.INT), "a"); - return programNode; + methodNode.addParameter(parameterNode); + + //Statements + + //Block + methodNode.block = new BlockNode(); + + c.members.add(methodNode); + + p.classes.add(c); + + return p; } + + public static ASTNode mockTwoSameMethods(){ + ProgramNode p = new ProgramNode(); + + ClassNode c = new ClassNode(); + + MethodNode methodNode = new MethodNode(); + methodNode.block = new BlockNode(); + methodNode.setType(new BaseType(TypeEnum.INT)); + + methodNode.setIdentifier("testMethod"); + + c.members.add(methodNode); + + MethodNode methodNode1 = new MethodNode(); + methodNode1.block = new BlockNode(); + methodNode1.setType(new BaseType(TypeEnum.INT)); + + methodNode1.setIdentifier("testMethod"); + + c.members.add(methodNode1); + + p.classes.add(c); + + return p; + } + + public static ASTNode mockTwoDifferentMethods(){ + ProgramNode p = new ProgramNode(); + + ClassNode c = new ClassNode(); + + MethodNode methodNode = new MethodNode(); + methodNode.block = new BlockNode(); + methodNode.setIdentifier("testMethod"); + + c.members.add(methodNode); + + MethodNode methodNode1 = new MethodNode(); + methodNode1.block = new BlockNode(); + methodNode1.setIdentifier("testMethod1"); + + c.members.add(methodNode1); + + p.classes.add(c); + + return p; + } + } diff --git a/src/test/java/semantic/SemanticTest.java b/src/test/java/semantic/SemanticTest.java index cc413a2..7000876 100644 --- a/src/test/java/semantic/SemanticTest.java +++ b/src/test/java/semantic/SemanticTest.java @@ -1,162 +1,63 @@ package semantic; - -import oldAst.*; -import com.fasterxml.jackson.databind.ObjectMapper; +import ast.ASTNode; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import semantic.exeptions.AlreadyDeclearedException; -import semantic.exeptions.TypeMismatchException; -import java.io.File; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertInstanceOf; -import static org.junit.jupiter.api.Assertions.assertNull; -import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.*; public class SemanticTest { - @BeforeEach - public void init() { - SemanticAnalyzer.clearAnalyzier(); - } @Test - public void alreadyDeclaredLocalFieldVar() { + public void twoFieldsSameName() { - //Arrange + ASTNode ast = Mocker.mockTwoSameFields(); - ProgramNode programNode = Mocker.mockFieldNodeAlreadyDeclaredProgrammNode(); + SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); + ASTNode tast = semanticAnalyzer.generateTast(ast); - //Act - - ASTNode typedAst = SemanticAnalyzer.generateTast(programNode); - - //Assert - - assertEquals(1, SemanticAnalyzer.errors.size()); - assertEquals(true, SemanticAnalyzer.errors.get(0) instanceof AlreadyDeclearedException); - assertEquals(null, typedAst); + assertEquals(semanticAnalyzer.errors.size(), 1); + assertInstanceOf(AlreadyDeclearedException.class, semanticAnalyzer.errors.getFirst()); + assertNull(tast); } @Test - public void alreadyDecleared() { + public void simpleMethod(){ - //Arrange + ASTNode ast = Mocker.mockSimpleMethod(); - ProgramNode programNode = Mocker.mockFieldNodeAlreadyDeclaredProgrammNode(); + SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); + ASTNode tast = semanticAnalyzer.generateTast(ast); - //Act - - ASTNode typedAst = SemanticAnalyzer.generateTast(programNode); - - //Assert - - assertEquals(1, SemanticAnalyzer.errors.size()); - assertInstanceOf(AlreadyDeclearedException.class, SemanticAnalyzer.errors.getFirst()); - assertNull(typedAst); + assertEquals(semanticAnalyzer.errors.size(), 0); + assertNotNull(tast); } @Test - public void shouldWorkWithNoError() { + public void twoSameMethods(){ + ASTNode ast = Mocker.mockTwoSameMethods(); - //Arrange - - ProgramNode programNode = Mocker.mockCorrectProgrammNode(); - - //Act - - ASTNode typedAst = SemanticAnalyzer.generateTast(programNode); - - //Assert - - assertEquals(0, SemanticAnalyzer.errors.size()); - assertEquals(programNode, typedAst); + SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); + ASTNode tast = semanticAnalyzer.generateTast(ast); + assertEquals(1, semanticAnalyzer.errors.size()); + assertInstanceOf(AlreadyDeclearedException.class, semanticAnalyzer.errors.getFirst()); + assertNull(tast); } @Test - public void refTypeCorrect() { + public void twoDifferentMethods(){ + ASTNode ast = Mocker.mockTwoDifferentMethods(); - //Arrange - - ObjectMapper objectMapper = new ObjectMapper(); - ProgramNode programNode = null; - try{ - programNode = objectMapper.readValue(new File("src/test/resources/semantic/correctRefType.json"), ProgramNode.class); - } catch (Exception e) { - e.printStackTrace(); - } - - //Act - - ASTNode typedAst = SemanticAnalyzer.generateTast(programNode); - - //Assert - - assertEquals(0, SemanticAnalyzer.errors.size()); - assertEquals(programNode, typedAst); - - } - - @Test - public void jsonWriteTest() { - - ObjectMapper objectMapper = new ObjectMapper(); - - //Arrange - - ProgramNode programNode = Mocker.mockCorrectProgrammNode(); - try{ - objectMapper.writeValue(new File("src/test/resources/semantic/test.json"), programNode); - } catch (Exception e) { - e.printStackTrace(); - } - - } - - @Test - public void jsonReadTest() { - - ObjectMapper objectMapper = new ObjectMapper(); - - ProgramNode programNode1 = null; - try{ - programNode1 = objectMapper.readValue(new File("src/test/resources/semantic/test.json"), ProgramNode.class); - } catch (Exception e) { - e.printStackTrace(); - } - - ProgramNode programNode2 = Mocker.mockCorrectProgrammNode(); - - } - - @Test - public void typeMismatch() { - - //Arrange - - ObjectMapper objectMapper = new ObjectMapper(); - ProgramNode programNode = null; - try{ - programNode = objectMapper.readValue(new File("src/test/resources/semantic/refTypeMismatch.json"), ProgramNode.class); - } catch (Exception e) { - e.printStackTrace(); - } - - //Act - - ASTNode typedAst = SemanticAnalyzer.generateTast(programNode); - - //Assert - - assertEquals(1, SemanticAnalyzer.errors.size()); - assertInstanceOf(TypeMismatchException.class, SemanticAnalyzer.errors.getFirst()); - assertNull(typedAst); + SemanticAnalyzer semanticAnalyzer = new SemanticAnalyzer(); + ASTNode tast = semanticAnalyzer.generateTast(ast); + assertEquals(semanticAnalyzer.errors.size(), 0); + assertNotNull(tast); } } diff --git a/src/test/resources/semantic/endToTAST/CorrectRetType.java b/src/test/resources/semantic/endToTAST/CorrectRetType.java new file mode 100644 index 0000000..473e8df --- /dev/null +++ b/src/test/resources/semantic/endToTAST/CorrectRetType.java @@ -0,0 +1,7 @@ +public class Example { + + public static int testMethod(int x){ + return x; + } + +} diff --git a/src/test/resources/semantic/endToTAST/CorrectTest.java b/src/test/resources/semantic/endToTAST/CorrectTest.java new file mode 100644 index 0000000..f0cdb30 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/CorrectTest.java @@ -0,0 +1,11 @@ +public class Example { + + public int a; + + public static int testMethod(int b){ + a = b; + return a; + + } + +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/FieldAlreadyDecleared.java b/src/test/resources/semantic/endToTAST/FieldAlreadyDecleared.java new file mode 100644 index 0000000..535a592 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/FieldAlreadyDecleared.java @@ -0,0 +1,10 @@ +public class Example { + + public int a; + public int a; + + public static int testMethod(char a){ + + } + +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/MultipleRetTypes.java b/src/test/resources/semantic/endToTAST/MultipleRetTypes.java new file mode 100644 index 0000000..a5680ed --- /dev/null +++ b/src/test/resources/semantic/endToTAST/MultipleRetTypes.java @@ -0,0 +1,8 @@ +public class Example { + + public static int testMethod(int x, char c){ + return x; + return c; + } + +} diff --git a/src/test/resources/semantic/endToTAST/NotDecleared.java b/src/test/resources/semantic/endToTAST/NotDecleared.java new file mode 100644 index 0000000..4aba5f8 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/NotDecleared.java @@ -0,0 +1,6 @@ +public class Test { + public static int testMethod(int x){ + int a = b; + return x; + } +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/ParameterAlreadyDecleared.java b/src/test/resources/semantic/endToTAST/ParameterAlreadyDecleared.java new file mode 100644 index 0000000..d2b3425 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/ParameterAlreadyDecleared.java @@ -0,0 +1,7 @@ +public class Example { + + public static int testMethod(char a, int a){ + + } + +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/TypeMismatchIntBool.java b/src/test/resources/semantic/endToTAST/TypeMismatchIntBool.java new file mode 100644 index 0000000..9b609b6 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/TypeMismatchIntBool.java @@ -0,0 +1,10 @@ +public class Test { + + public boolean b; + + public static int testMethod(int a){ + + b = a; + + } +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/TypeMismatchRefType.java b/src/test/resources/semantic/endToTAST/TypeMismatchRefType.java new file mode 100644 index 0000000..a7b8cc9 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/TypeMismatchRefType.java @@ -0,0 +1,16 @@ +public class Test { + + public static int testMethod(ExampleA exampleA, ExampleB exampleB){ + + exampleA = exampleB; + + } +} + +public class ExampleA{ + public int a; +} + +public class ExampleB{ + public int a; +} \ No newline at end of file diff --git a/src/test/resources/semantic/endToTAST/retTypeMismatch.java b/src/test/resources/semantic/endToTAST/retTypeMismatch.java new file mode 100644 index 0000000..d3a2674 --- /dev/null +++ b/src/test/resources/semantic/endToTAST/retTypeMismatch.java @@ -0,0 +1,7 @@ +public class Example { + + public static int testMethod(char x){ + return x; + } + +}