AST: add feature flag "FixedArrays"

This commit is contained in:
Erik Eckstein
2023-12-05 14:39:30 +01:00
parent ca20ebc158
commit a0f8d65be7
2 changed files with 7 additions and 0 deletions

View File

@@ -3616,6 +3616,10 @@ static bool usesFeatureNonEscapableTypes(Decl *decl) {
return false;
}
static bool usesFeatureFixedArrays(Decl *decl) {
return false;
}
static bool hasParameterPacks(Decl *decl) {
if (auto genericContext = decl->getAsGenericContext()) {
auto sig = genericContext->getGenericSignature();