mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[AST] Remove ParameterTypeFlags from ParenType and TupleType
The last clients that relied on stashing parameter type flags on these types are now gone.
This commit is contained in:
@@ -3649,7 +3649,6 @@ namespace {
|
||||
|
||||
void visitParenType(ParenType *T, StringRef label) {
|
||||
printCommon(label, "paren_type");
|
||||
dumpParameterFlags(T->getParameterFlags());
|
||||
printRec(T->getUnderlyingType());
|
||||
PrintWithColorRAII(OS, ParenthesisColor) << ')';
|
||||
}
|
||||
@@ -3664,7 +3663,6 @@ namespace {
|
||||
PrintWithColorRAII(OS, TypeFieldColor) << "tuple_type_elt";
|
||||
if (elt.hasName())
|
||||
printField("name", elt.getName().str());
|
||||
dumpParameterFlags(elt.getParameterFlags());
|
||||
printRec(elt.getType());
|
||||
OS << ")";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user