Fixed return type error

master
Apoorva Ranade 3 years ago
parent 8244f37463
commit 1c43d3ca91

@ -163,7 +163,7 @@ public class DeclarationAnalyzer extends AbstractNodeAnalyzer<Type>
if(!firstPass){
ValueType returnType = ValueType.annotationToValueType(node.returnType);
if(returnType!=null && !returnType.isSpecialType() && !(globals.get(returnType.className()) instanceof ClassVType))
if(returnType!=null && !returnType.isSpecialType() && !returnType.isListType() && !(globals.get(returnType.className()) instanceof ClassVType))
errors.semError(
node.returnType, "Invalid type annotation; there is no class named: %s", returnType.className());
@ -260,7 +260,8 @@ public class DeclarationAnalyzer extends AbstractNodeAnalyzer<Type>
!(params.get(0) instanceof ClassValueType)||
!((ClassValueType)params.get(0)).className().equals(current_class.className))
errors.semError(id, "Method overridden with different type signature: __init__");
else sym.put(name, current_func);
else
sym.put(name, current_func);
if(params.size() < 1 || (params.get(0) instanceof ClassValueType==false) || ((ClassValueType)params.get(0)).className().equals(current_class.className)==false)
errors.semError(
id, "First parameter of the following method must be of the enclosing class: %s", name);
@ -283,7 +284,10 @@ public class DeclarationAnalyzer extends AbstractNodeAnalyzer<Type>
}
else
sym.put(name, current_func);
} else if (super_syms.contains(name))
}
else if (name.equals("__init__") && !(type instanceof FuncType))
errors.semError(id, "Cannot re-define attribute: %s", name);
else if (super_syms.contains(name))
errors.semError(id, "Cannot re-define attribute: %s", name);
else
sym.put(name, type);
@ -304,20 +308,16 @@ public class DeclarationAnalyzer extends AbstractNodeAnalyzer<Type>
}
boolean isVariableType(Type ty)
{
return ty.isSpecialType() || ty.equals(Type.OBJECT_TYPE);
return ty.isSpecialType() || ty.equals(Type.OBJECT_TYPE)|| ty.isListType();
}
@Override
public Type analyze(NonLocalDecl node)
{
SymbolTable<Type> curr_sym=sym;
while(curr_sym.getParent()!=null)
SymbolTable<Type> parent=sym.getParent();
if (parent.getParent()!=null && parent.declares(node.variable.name) && isVariableType(sym.get(node.variable.name)))
{
if (curr_sym.declares(node.variable.name) && isVariableType(sym.get(node.variable.name)))
{
sym.put(node.variable.name, sym.get(node.variable.name));
return sym.get(node.variable.name);
}
curr_sym=curr_sym.getParent();
sym.put(node.variable.name, sym.get(node.variable.name));
return sym.get(node.variable.name);
}
errors.semError(
node.variable, "Not a nonlocal variable: %s", node.variable.name);

Loading…
Cancel
Save