patrick
/
plasp
Archived
1
0
Fork 0

Fixed unescaped ASP identifier.

This commit is contained in:
Patrick Lühne 2016-06-14 18:53:40 +02:00
parent 853d7471c2
commit 3d661cd1f4
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ void TranslatorASP::translateVariablesBody(const expressions::Variables &variabl
m_outputStream << utils::Keyword("hasType") << "("
<< utils::Variable(utils::escapeASPVariable(variable.name())) << ", "
<< utils::Keyword("type") << "(" << type.name() << "))";
<< utils::Keyword("type") << "(" << utils::escapeASP(type.name()) << "))";
}
else
{