Rename IRGenerationContext::internalDispatch() to generateInternalDispatchFunction()

This commit is contained in:
Kamil Śliwak
2020-05-20 12:46:31 +02:00
parent 30278c4b88
commit 7d2292fbaf
3 changed files with 4 additions and 4 deletions
@@ -695,8 +695,8 @@ void IRGeneratorForStatements::endVisit(FunctionCall const& _functionCall)
{
YulArity arity = YulArity::fromType(*functionType);
define(_functionCall) <<
// NOTE: internalDispatch() takes care of adding the function to function generation queue
m_context.internalDispatch(arity) <<
// NOTE: generateInternalDispatchFunction() takes care of adding the function to function generation queue
m_context.generateInternalDispatchFunction(arity) <<
"(" <<
IRVariable(_functionCall.expression()).part("functionIdentifier").name() <<
joinHumanReadablePrefixed(args) <<