mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix return statement
This commit is contained in:
parent
9436235421
commit
0426f4797d
1 changed files with 1 additions and 1 deletions
|
@ -695,7 +695,7 @@ ScopePtr Frontend::getModuleEnvironment(const SourceModule& module, const Config
|
||||||
{
|
{
|
||||||
ModulePtr module = moduleResolver.getModule(path);
|
ModulePtr module = moduleResolver.getModule(path);
|
||||||
if (!module)
|
if (!module)
|
||||||
return;
|
continue;
|
||||||
|
|
||||||
for (const auto& [name, ty] : module->getModuleScope()->exportedTypeBindings)
|
for (const auto& [name, ty] : module->getModuleScope()->exportedTypeBindings)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue