Rename escapeAndQuoteYulString() back to escapeAndQuoteString()

This commit is contained in:
Kamil Śliwak
2021-07-14 21:29:01 +02:00
parent 312ac4a255
commit 6753c8f624
5 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ public:
return;
m_out << m_prefix << " /*";
if (m_location.sourceName)
m_out << " " + escapeAndQuoteYulString(*m_location.sourceName);
m_out << " " + escapeAndQuoteString(*m_location.sourceName);
if (m_location.hasText())
m_out << ":" << to_string(m_location.start) + ":" + to_string(m_location.end);
m_out << " " << locationFromSources(m_sourceCodes, m_location);