Rename expectedItems to numVariables

This commit is contained in:
Alex Beregszaszi
2017-07-13 15:18:40 +02:00
parent ee3a2c0599
commit 8d90e6fc4e
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -175,19 +175,19 @@ bool AsmAnalyzer::operator()(assembly::Assignment const& _assignment)
bool AsmAnalyzer::operator()(assembly::VariableDeclaration const& _varDecl)
{
bool success = true;
int const expectedItems = _varDecl.variables.size();
int const numVariables = _varDecl.variables.size();
if (_varDecl.value)
{
int const stackHeight = m_stackHeight;
success = boost::apply_visitor(*this, *_varDecl.value);
if ((m_stackHeight - stackHeight) != expectedItems)
if ((m_stackHeight - stackHeight) != numVariables)
{
m_errorReporter.declarationError(_varDecl.location, "Variable count mismatch.");
return false;
}
}
else
m_stackHeight += expectedItems;
m_stackHeight += numVariables;
for (auto const& variable: _varDecl.variables)
{