added Some Semantic Checks
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
10eb17497e
commit
a34c7ded50
@ -46,7 +46,7 @@ public class MethodNode implements MemberNode, Visitable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < this.getParameters().size(); i++) {
|
for (int i = 0; i < this.getParameters().size(); i++) {
|
||||||
if (this.getParameters().get(i).type.equals(methodNode.getParameters().get(i).type)) {
|
if (!this.getParameters().get(i).type.equals(methodNode.getParameters().get(i).type)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ import semantic.SemanticVisitor;
|
|||||||
import typechecker.TypeCheckResult;
|
import typechecker.TypeCheckResult;
|
||||||
|
|
||||||
public class ElseNode implements IStatementNode {
|
public class ElseNode implements IStatementNode {
|
||||||
BlockNode block;
|
public BlockNode block;
|
||||||
|
|
||||||
public ElseNode(BlockNode block) {
|
public ElseNode(BlockNode block) {
|
||||||
this.block = block;
|
this.block = block;
|
||||||
@ -14,6 +14,6 @@ public class ElseNode implements IStatementNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult accept(SemanticVisitor visitor) {
|
public TypeCheckResult accept(SemanticVisitor visitor) {
|
||||||
return null;
|
return visitor.analyze(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,9 +8,9 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class IfElseNode implements IStatementNode {
|
public class IfElseNode implements IStatementNode {
|
||||||
IfNode ifStatement;
|
public IfNode ifStatement;
|
||||||
List<IfNode> elseIfStatements = new ArrayList<>();
|
public List<IfNode> elseIfStatements = new ArrayList<>();
|
||||||
ElseNode elseStatement;
|
public ElseNode elseStatement;
|
||||||
|
|
||||||
public IfElseNode(IfNode ifStatement, ElseNode elseNode) {
|
public IfElseNode(IfNode ifStatement, ElseNode elseNode) {
|
||||||
this.ifStatement = ifStatement;
|
this.ifStatement = ifStatement;
|
||||||
@ -23,6 +23,6 @@ public class IfElseNode implements IStatementNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult accept(SemanticVisitor visitor) {
|
public TypeCheckResult accept(SemanticVisitor visitor) {
|
||||||
return null;
|
return visitor.analyze(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@ import semantic.SemanticVisitor;
|
|||||||
import typechecker.TypeCheckResult;
|
import typechecker.TypeCheckResult;
|
||||||
|
|
||||||
public class IfNode implements IStatementNode {
|
public class IfNode implements IStatementNode {
|
||||||
IExpressionNode expression;
|
public IExpressionNode expression;
|
||||||
BlockNode block;
|
public BlockNode block;
|
||||||
|
|
||||||
public IfNode(IExpressionNode expression, BlockNode block) {
|
public IfNode(IExpressionNode expression, BlockNode block) {
|
||||||
this.expression = expression;
|
this.expression = expression;
|
||||||
@ -16,6 +16,6 @@ public class IfNode implements IStatementNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult accept(SemanticVisitor visitor) {
|
public TypeCheckResult accept(SemanticVisitor visitor) {
|
||||||
return null;
|
return visitor.analyze(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
package ast.type;
|
package ast.type;
|
||||||
|
|
||||||
import ast.ASTNode;
|
import ast.ASTNode;
|
||||||
|
import semantic.SemanticVisitor;
|
||||||
|
import typechecker.TypeCheckResult;
|
||||||
|
import visitor.Visitable;
|
||||||
|
|
||||||
public class ValueNode implements ASTNode {
|
public class ValueNode implements ASTNode, Visitable {
|
||||||
public EnumValueNode valueType;
|
public EnumValueNode valueType;
|
||||||
public String value;
|
public String value;
|
||||||
|
|
||||||
@ -10,4 +13,10 @@ public class ValueNode implements ASTNode {
|
|||||||
this.valueType = valueType;
|
this.valueType = valueType;
|
||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TypeCheckResult accept(SemanticVisitor visitor) {
|
||||||
|
return visitor.analyze(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,9 @@ import ast.statementexpressions.methodcallstatementnexpressions.MethodCallNode;
|
|||||||
import ast.statementexpressions.methodcallstatementnexpressions.TargetNode;
|
import ast.statementexpressions.methodcallstatementnexpressions.TargetNode;
|
||||||
import ast.statements.*;
|
import ast.statements.*;
|
||||||
import ast.type.EnumAccessModifierNode;
|
import ast.type.EnumAccessModifierNode;
|
||||||
|
import ast.type.ValueNode;
|
||||||
import ast.type.type.*;
|
import ast.type.type.*;
|
||||||
|
import com.sun.jdi.IntegerType;
|
||||||
import semantic.context.Context;
|
import semantic.context.Context;
|
||||||
import semantic.exceptions.*;
|
import semantic.exceptions.*;
|
||||||
import typechecker.TypeCheckResult;
|
import typechecker.TypeCheckResult;
|
||||||
@ -156,11 +158,6 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
if (methodNode.getType() == null) {
|
if (methodNode.getType() == null) {
|
||||||
methodNode.setType(new BaseType(TypeEnum.VOID));
|
methodNode.setType(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);
|
return new TypeCheckResult(valid, resultType);
|
||||||
|
|
||||||
@ -180,6 +177,16 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult analyze(IfNode toCheck) {
|
public TypeCheckResult analyze(IfNode toCheck) {
|
||||||
|
toCheck.block.accept(this);
|
||||||
|
|
||||||
|
var resultExpression = toCheck.expression.accept(this);
|
||||||
|
if(resultExpression.isValid()){
|
||||||
|
if(!resultExpression.getType().equals(new BaseType(TypeEnum.BOOL))){
|
||||||
|
errors.add(new TypeMismatchException("Expression must be Boolean"));
|
||||||
|
return new TypeCheckResult(false, new BaseType(TypeEnum.VOID));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return new TypeCheckResult(true, null);
|
return new TypeCheckResult(true, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -187,9 +194,14 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
public TypeCheckResult analyze(ReturnNode toCheck) {
|
public TypeCheckResult analyze(ReturnNode toCheck) {
|
||||||
if (toCheck.expression != null) {
|
if (toCheck.expression != null) {
|
||||||
var result = toCheck.expression.accept(this);
|
var result = toCheck.expression.accept(this);
|
||||||
|
if(result.isValid()){
|
||||||
|
if(!result.getType().equals(currentMethodReturnType)){
|
||||||
|
errors.add(new TypeMismatchException("Mismatched return Type from method"));
|
||||||
|
}
|
||||||
|
}
|
||||||
return new TypeCheckResult(true, result.getType());
|
return new TypeCheckResult(true, result.getType());
|
||||||
} else if (toCheck.voidReturn) {
|
} else if (toCheck.voidReturn) {
|
||||||
return new TypeCheckResult(false, new BaseType(TypeEnum.VOID));
|
return new TypeCheckResult(true, new BaseType(TypeEnum.VOID));
|
||||||
}
|
}
|
||||||
return new TypeCheckResult(true, null);
|
return new TypeCheckResult(true, null);
|
||||||
|
|
||||||
@ -216,7 +228,9 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
if (blockReturnType == null) {
|
if (blockReturnType == null) {
|
||||||
blockReturnType = result.getType();
|
blockReturnType = result.getType();
|
||||||
} else {
|
} else {
|
||||||
errors.add(new MultipleReturnTypes("There are multiple Return types"));
|
if(!blockReturnType.equals(result.getType())) {
|
||||||
|
errors.add(new MultipleReturnTypes("There are multiple Return types"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -238,6 +252,7 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult analyze(ElseNode toCheck) {
|
public TypeCheckResult analyze(ElseNode toCheck) {
|
||||||
|
toCheck.block.accept(this);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,7 +304,11 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TypeCheckResult analyze(IfElseNode toCheck) {
|
public TypeCheckResult analyze(IfElseNode toCheck) {
|
||||||
return new TypeCheckResult(true, null);
|
var resultIf = toCheck.ifStatement.accept(this);
|
||||||
|
|
||||||
|
var resultElse = toCheck.elseStatement.accept(this);
|
||||||
|
|
||||||
|
return new TypeCheckResult(true, new BaseType(TypeEnum.VOID));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -301,11 +320,20 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
targetType = currentFields.get(toCheck.target.identifier);
|
targetType = currentFields.get(toCheck.target.identifier);
|
||||||
}
|
}
|
||||||
if (targetType instanceof ReferenceType reference) {
|
if (targetType instanceof ReferenceType reference) {
|
||||||
return new TypeCheckResult(true, getTypeFromMethod(toCheck, reference));
|
var type = getTypeFromMethod(toCheck, reference);
|
||||||
|
if(type != null){
|
||||||
|
return new TypeCheckResult(true, type);
|
||||||
|
}else {
|
||||||
|
return new TypeCheckResult(false, null);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(toCheck.target.thisTar){
|
if(toCheck.target.thisTar){
|
||||||
return new TypeCheckResult(true, getTypeFromMethod(toCheck, new ReferenceType(currentClass.identifier)));
|
var type = getTypeFromMethod(toCheck, new ReferenceType(currentClass.identifier));
|
||||||
|
if(type != null){
|
||||||
|
return new TypeCheckResult(true, type);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
var result = toCheck.target.accept(this);
|
var result = toCheck.target.accept(this);
|
||||||
if (result.getType() instanceof ReferenceType reference) {
|
if (result.getType() instanceof ReferenceType reference) {
|
||||||
@ -313,27 +341,7 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return new TypeCheckResult(false, null);
|
||||||
}
|
|
||||||
|
|
||||||
private ITypeNode getTypeFromMethod(MethodCallNode toCheck, ReferenceType reference) {
|
|
||||||
var classContext = context.getClass(reference.getIdentifier());
|
|
||||||
|
|
||||||
if (classContext == null) {
|
|
||||||
errors.add(new NotDeclaredException(toCheck.target.identifier + "is not Defined"));
|
|
||||||
} else {
|
|
||||||
var methods = classContext.getMethods();
|
|
||||||
for (var method : methods) {
|
|
||||||
if (toCheck.identifier.equals(method.getIdentifier()) && method.getParameters().size() == toCheck.parameters.size()) {
|
|
||||||
if(method.accesModifier.accessType == EnumAccessModifierNode.PUBLIC){
|
|
||||||
return method.getType();
|
|
||||||
}else {
|
|
||||||
errors.add(new NotVisibleException("This Method is not Visible"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -344,6 +352,9 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
TypeCheckResult result = localVarDecl.expression.accept(this);
|
TypeCheckResult result = localVarDecl.expression.accept(this);
|
||||||
|
|
||||||
var resultType = localVarDecl.expression.getType();
|
var resultType = localVarDecl.expression.getType();
|
||||||
|
if(result.getType() != null){
|
||||||
|
resultType = result.getType();
|
||||||
|
}
|
||||||
valid = result.isValid() && valid;
|
valid = result.isValid() && valid;
|
||||||
|
|
||||||
if (!Objects.equals(resultType, localVarDecl.type)) {
|
if (!Objects.equals(resultType, localVarDecl.type)) {
|
||||||
@ -410,17 +421,26 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
public TypeCheckResult analyze(UnaryNode unary) {
|
public TypeCheckResult analyze(UnaryNode unary) {
|
||||||
var valid = true;
|
var valid = true;
|
||||||
|
|
||||||
if (currentScope.contains(unary.identifier)) {
|
if(unary.identifier != null){
|
||||||
return new TypeCheckResult(valid, currentScope.getLocalVar(unary.identifier));
|
if (currentScope.contains(unary.identifier)) {
|
||||||
} else if (currentFields.get(unary.identifier) != null) {
|
return new TypeCheckResult(valid, currentScope.getLocalVar(unary.identifier));
|
||||||
return new TypeCheckResult(valid, currentFields.get(unary.identifier));
|
} else if (currentFields.get(unary.identifier) != null) {
|
||||||
} else if (unary.statement != null) {
|
return new TypeCheckResult(valid, currentFields.get(unary.identifier));
|
||||||
|
} else if (unary.statement != null) {
|
||||||
|
var result = unary.statement.accept(this);
|
||||||
|
unary.setType(result.getType());
|
||||||
|
return result;
|
||||||
|
} else {
|
||||||
|
errors.add(new NotDeclaredException("Var is not Declared"));
|
||||||
|
}
|
||||||
|
} else if (unary.statement != null){
|
||||||
var result = unary.statement.accept(this);
|
var result = unary.statement.accept(this);
|
||||||
unary.setType(result.getType());
|
return new TypeCheckResult(result.isValid(), result.getType());
|
||||||
return result;
|
} else if(unary.value != null){
|
||||||
} else {
|
var result = unary.value.accept(this);
|
||||||
errors.add(new NotDeclaredException("Var is not Declared"));
|
return new TypeCheckResult(result.isValid(), result.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
return new TypeCheckResult(valid, null);
|
return new TypeCheckResult(valid, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -464,6 +484,59 @@ public class SemanticAnalyzer implements SemanticVisitor {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TypeCheckResult analyze(ValueNode valueNode) {
|
||||||
|
|
||||||
|
switch (valueNode.valueType){
|
||||||
|
case INT_VALUE -> {
|
||||||
|
return new TypeCheckResult(true, new BaseType(TypeEnum.INT));
|
||||||
|
}
|
||||||
|
case CHAR_VALUE -> {
|
||||||
|
return new TypeCheckResult(true, new BaseType(TypeEnum.CHAR));
|
||||||
|
}
|
||||||
|
case BOOLEAN_VALUE -> {
|
||||||
|
return new TypeCheckResult(true, new BaseType(TypeEnum.BOOL));
|
||||||
|
}
|
||||||
|
default -> {
|
||||||
|
return new TypeCheckResult(false, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private ITypeNode getTypeFromMethod(MethodCallNode toCheck, ReferenceType reference) {
|
||||||
|
var classContext = context.getClass(reference.getIdentifier());
|
||||||
|
|
||||||
|
if (classContext == null) {
|
||||||
|
errors.add(new NotDeclaredException(toCheck.target.identifier + "is not Defined"));
|
||||||
|
} else {
|
||||||
|
var methods = classContext.getMethods();
|
||||||
|
for (var method : methods) {
|
||||||
|
if (toCheck.identifier.equals(method.getIdentifier())) {
|
||||||
|
if(method.getParameters().size() == toCheck.parameters.size() && !(method instanceof ConstructorNode)){
|
||||||
|
boolean same = true;
|
||||||
|
for(int i = 0; i < method.getParameters().size(); i++){
|
||||||
|
var result1 = method.getParameters().get(i).accept(this);
|
||||||
|
var result2 = toCheck.parameters.get(i).accept(this);
|
||||||
|
if (Objects.equals(result1.getType(), result2.getType())) {
|
||||||
|
same = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(same){
|
||||||
|
if(method.accesModifier.accessType == EnumAccessModifierNode.PUBLIC){
|
||||||
|
if(method.getType() == null){
|
||||||
|
return new BaseType(TypeEnum.VOID);
|
||||||
|
}
|
||||||
|
return method.getType();
|
||||||
|
}else {
|
||||||
|
errors.add(new NotVisibleException("This Method is not Visible"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
errors.add(new WrongOverloading("No Method found with this parameters"));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -14,6 +14,7 @@ import ast.statementexpressions.crementexpressions.IncrementNode;
|
|||||||
import ast.statementexpressions.methodcallstatementnexpressions.MethodCallNode;
|
import ast.statementexpressions.methodcallstatementnexpressions.MethodCallNode;
|
||||||
import ast.statementexpressions.methodcallstatementnexpressions.TargetNode;
|
import ast.statementexpressions.methodcallstatementnexpressions.TargetNode;
|
||||||
import ast.statements.*;
|
import ast.statements.*;
|
||||||
|
import ast.type.ValueNode;
|
||||||
import typechecker.TypeCheckResult;
|
import typechecker.TypeCheckResult;
|
||||||
|
|
||||||
public interface SemanticVisitor {
|
public interface SemanticVisitor {
|
||||||
@ -70,4 +71,6 @@ public interface SemanticVisitor {
|
|||||||
|
|
||||||
TypeCheckResult analyze(TargetNode toCheck);
|
TypeCheckResult analyze(TargetNode toCheck);
|
||||||
|
|
||||||
|
TypeCheckResult analyze(ValueNode toCheck);
|
||||||
|
|
||||||
}
|
}
|
9
src/main/java/semantic/exceptions/WrongOverloading.java
Normal file
9
src/main/java/semantic/exceptions/WrongOverloading.java
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
package semantic.exceptions;
|
||||||
|
|
||||||
|
public class WrongOverloading extends RuntimeException {
|
||||||
|
|
||||||
|
public WrongOverloading(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -141,6 +141,9 @@ public class EndToTypedAstTest {
|
|||||||
ASTNode typedAst = SemanticAnalyzer.generateTast(abstractSyntaxTree);
|
ASTNode typedAst = SemanticAnalyzer.generateTast(abstractSyntaxTree);
|
||||||
|
|
||||||
System.out.println("Testing the file: " + file.getName());
|
System.out.println("Testing the file: " + file.getName());
|
||||||
|
for(Exception runtimeException : SemanticAnalyzer.errors){
|
||||||
|
runtimeException.printStackTrace();
|
||||||
|
}
|
||||||
assertTrue(SemanticAnalyzer.errors.isEmpty());
|
assertTrue(SemanticAnalyzer.errors.isEmpty());
|
||||||
assertNotNull(typedAst);
|
assertNotNull(typedAst);
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,18 @@ package semantic;
|
|||||||
public class SemanticTest {
|
public class SemanticTest {
|
||||||
|
|
||||||
|
|
||||||
|
public void test(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void test(int a, boolean b){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void test(boolean b, int a){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// @Test
|
// @Test
|
||||||
// public void alreadyDeclaredLocalFieldVar() {
|
// public void alreadyDeclaredLocalFieldVar() {
|
||||||
// ProgramNode programNode = new ProgramNode();
|
// ProgramNode programNode = new ProgramNode();
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
// @expected: TypeMismatchException
|
||||||
|
public class Test{
|
||||||
|
|
||||||
|
public void test(int x){
|
||||||
|
|
||||||
|
if(x){
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
// @expected: WrongOverloading
|
||||||
|
public class Test{
|
||||||
|
|
||||||
|
public void test(int x){
|
||||||
|
|
||||||
|
if(this.get()){
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
public boolean b;
|
||||||
|
|
||||||
|
public boolean get(int c){
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
// @expected: MultipleReturnTypes
|
// @expected: TypeMismatchException
|
||||||
public class Example {
|
public class Example {
|
||||||
|
|
||||||
public static int testMethod(int x, char c){
|
public static int testMethod(int x, char c){
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
public class Test{
|
||||||
|
|
||||||
|
public void test(int x){
|
||||||
|
|
||||||
|
if(this.get(x)){
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
public boolean b;
|
||||||
|
|
||||||
|
public boolean get(int c){
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,9 +1,21 @@
|
|||||||
public class Car{
|
public class Test{
|
||||||
|
|
||||||
private int speed;
|
public int i;
|
||||||
|
public boolean b;
|
||||||
|
|
||||||
public int getSpeed(boolean boo){
|
public int test(){
|
||||||
return speed;
|
|
||||||
|
return i;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void test(int a){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public int test(boolean bool){
|
||||||
|
int ret = 1;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
public class Car{
|
||||||
|
|
||||||
|
public void test(boolean boo){
|
||||||
|
|
||||||
|
if(boo){
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
13
src/test/resources/input/typedAstFeaturesTests/IfReturn.java
Normal file
13
src/test/resources/input/typedAstFeaturesTests/IfReturn.java
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
public class Car{
|
||||||
|
|
||||||
|
public int getSpeed(boolean bool, int a, int b){
|
||||||
|
|
||||||
|
if(bool){
|
||||||
|
return a;
|
||||||
|
} else {
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
public class Car{
|
||||||
|
|
||||||
|
private int speed;
|
||||||
|
|
||||||
|
public void getSpeed(boolean boo){
|
||||||
|
if(boo){
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user