File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,8 @@ struct BridgedASTType {
239
239
240
240
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedOwnedString getDebugDescription () const ;
241
241
242
+ BRIDGED_INLINE bool hasTypeParameter () const ;
243
+
242
244
BRIDGED_INLINE bool isOpenedExistentialWithError () const ;
243
245
244
246
BRIDGED_INLINE bool isEscapable () const ;
Original file line number Diff line number Diff line change @@ -85,6 +85,10 @@ BridgedOwnedString BridgedASTType::getDebugDescription() const {
85
85
return BridgedOwnedString (unbridged ().getString ());
86
86
}
87
87
88
+ bool BridgedASTType::hasTypeParameter () const {
89
+ return unbridged ()->hasTypeParameter ();
90
+ }
91
+
88
92
bool BridgedASTType::isOpenedExistentialWithError () const {
89
93
return unbridged ()->isOpenedExistentialWithError ();
90
94
}
You can’t perform that action at this time.
0 commit comments