mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Not error recovery type
This commit is contained in:
parent
ff4c77c0e8
commit
08165396eb
1 changed files with 1 additions and 1 deletions
|
@ -1081,7 +1081,7 @@ static std::vector<TypeId> parseFormatString(TypeChecker& typechecker, const cha
|
|||
if (data[i] == 'q' || data[i] == 's')
|
||||
result.push_back(typechecker.stringType);
|
||||
else if (data[i] == '*')
|
||||
result.push_back(typechecker.errorRecoveryType(typechecker.anyType));
|
||||
result.push_back(typechecker.anyType);
|
||||
else if (strchr(options, data[i]))
|
||||
result.push_back(typechecker.numberType);
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue