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 @@ -195,6 +195,8 @@ struct BridgedASTType {
195
195
196
196
BRIDGED_INLINE bool isOpenedExistentialWithError () const ;
197
197
198
+ BRIDGED_INLINE bool isEscapable () const ;
199
+
198
200
// =========================================================================//
199
201
// SILFunctionType
200
202
// =========================================================================//
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ bool BridgedASTType::isOpenedExistentialWithError() const {
77
77
return unbridged ()->isOpenedExistentialWithError ();
78
78
}
79
79
80
+ bool BridgedASTType::isEscapable () const {
81
+ return unbridged ()->isEscapable ();
82
+ }
83
+
80
84
BridgedResultInfoArray
81
85
BridgedASTType::SILFunctionType_getResultsWithError () const {
82
86
return unbridged ()->castTo <swift::SILFunctionType>()->getResultsWithError ();
You can’t perform that action at this time.
0 commit comments