Fix return statement

This commit is contained in:
HawDevelopment 2022-08-24 18:10:39 +02:00
parent 9436235421
commit 0426f4797d

View file

@ -695,7 +695,7 @@ ScopePtr Frontend::getModuleEnvironment(const SourceModule& module, const Config
{
ModulePtr module = moduleResolver.getModule(path);
if (!module)
return;
continue;
for (const auto& [name, ty] : module->getModuleScope()->exportedTypeBindings)
{