1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-04 02:40:53 +01:00

Remove comment

This commit is contained in:
aaron 2024-09-13 10:15:57 -07:00 committed by GitHub
parent 1c6c5ade75
commit 001078a195
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -2207,13 +2207,6 @@ TypeFunctionReductionResult<TypeId> indexFunctionImpl(
TypeId indexerTy = follow(typeParams.at(1));
// Whether the type is still pending.
//
// TODO: A generalized sanity check function for all type functions?
// But it should be optional for customization
// for functions that specifically need type function
// This here fixes a stack overflow.
// https://github.com/luau-lang/luau/issues/1406
if (isPending(indexerTy, ctx->solver))
{
return {std::nullopt, false, {indexerTy}, {}};