mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
Store AstExprFunction in astTypes for stats (#612)
This commit is contained in:
parent
12c5502027
commit
2a6d1c03ac
1 changed files with 3 additions and 0 deletions
|
@ -3640,6 +3640,9 @@ void TypeChecker::checkFunctionBody(const ScopePtr& scope, TypeId ty, const AstE
|
||||||
reportError(getEndLocation(function), FunctionExitsWithoutReturning{funTy->retTypes});
|
reportError(getEndLocation(function), FunctionExitsWithoutReturning{funTy->retTypes});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!currentModule->astTypes.find(&function))
|
||||||
|
currentModule->astTypes[&function] = ty;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
ice("Checking non functional type");
|
ice("Checking non functional type");
|
||||||
|
|
Loading…
Add table
Reference in a new issue