This commit is contained in:
arookas 2015-12-27 22:54:18 -05:00
parent 4d947f5b6f
commit c8056ac960

View file

@ -187,8 +187,7 @@ namespace arookas
{
throw new sunRedeclaredVariableException(node);
}
var variableInfo = Scopes.DeclareVariable(node.Value);
return variableInfo;
return Scopes.DeclareVariable(node.Value);
}
public sunConstantSymbol DeclareConstant(sunIdentifier node, sunExpression expression)
{
@ -196,8 +195,7 @@ namespace arookas
{
throw new sunRedeclaredVariableException(node);
}
var constInfo = Scopes.Top.DeclareConstant(node.Value, expression);
return constInfo;
return Scopes.Top.DeclareConstant(node.Value, expression);
}
public sunStorableSymbol ResolveStorable(sunIdentifier node)
{
@ -263,7 +261,6 @@ namespace arookas
return symbol;
}
void WriteHeader()
{
mWriter.WriteString("SPCB");