|
24 | 24 | #ifdef USED_IN_CPP_SOURCE
|
25 | 25 | #include "swift/AST/DiagnosticConsumer.h"
|
26 | 26 | #include "swift/AST/DiagnosticEngine.h"
|
| 27 | +#include "swift/AST/Stmt.h" |
27 | 28 | #endif
|
28 | 29 |
|
29 | 30 | SWIFT_BEGIN_NULLABILITY_ANNOTATIONS
|
@@ -198,6 +199,19 @@ struct BridgedASTNode {
|
198 | 199 |
|
199 | 200 | SWIFT_NAME("kind")
|
200 | 201 | ASTNodeKind Kind;
|
| 202 | + |
| 203 | +#ifdef USED_IN_CPP_SOURCE |
| 204 | + swift::ASTNode unbridged() const { |
| 205 | + switch (Kind) { |
| 206 | + case ASTNodeKindExpr: |
| 207 | + return swift::ASTNode(static_cast<swift::Expr *>(Raw)); |
| 208 | + case ASTNodeKindStmt: |
| 209 | + return swift::ASTNode(static_cast<swift::Stmt *>(Raw)); |
| 210 | + case ASTNodeKindDecl: |
| 211 | + return swift::ASTNode(static_cast<swift::Decl *>(Raw)); |
| 212 | + } |
| 213 | + } |
| 214 | +#endif |
201 | 215 | };
|
202 | 216 |
|
203 | 217 | // Forward declare the underlying AST node type for each wrapper.
|
@@ -938,33 +952,196 @@ BridgedUnresolvedMemberExpr BridgedUnresolvedMemberExpr_createParsed(
|
938 | 952 | BridgedASTContext cContext, BridgedSourceLoc cDotLoc,
|
939 | 953 | BridgedDeclNameRef cName, BridgedDeclNameLoc cNameLoc);
|
940 | 954 |
|
| 955 | +SWIFT_NAME("BridgedUnresolvedPatternExpr.createParsed(_:pattern:)") |
| 956 | +BridgedUnresolvedPatternExpr |
| 957 | +BridgedUnresolvedPatternExpr_createParsed(BridgedASTContext cContext, |
| 958 | + BridgedPattern cPattern); |
| 959 | + |
| 960 | +SWIFT_NAME("BridgedExpr.setImplicit(self:)") |
| 961 | +void BridgedExpr_setImplicit(BridgedExpr cExpr); |
| 962 | + |
941 | 963 | SWIFT_NAME("BridgedExpr.dump(self:)")
|
942 | 964 | void BridgedExpr_dump(BridgedExpr expr);
|
943 | 965 |
|
944 | 966 | //===----------------------------------------------------------------------===//
|
945 | 967 | // MARK: Stmts
|
946 | 968 | //===----------------------------------------------------------------------===//
|
947 | 969 |
|
| 970 | +struct BridgedLabeledStmtInfo { |
| 971 | + SWIFT_NAME("name") |
| 972 | + BridgedIdentifier Name; |
| 973 | + SWIFT_NAME("loc") |
| 974 | + BridgedSourceLoc Loc; |
| 975 | + |
| 976 | +#ifdef USED_IN_CPP_SOURCE |
| 977 | + swift::LabeledStmtInfo unbridged() const { |
| 978 | + return {Name.unbridged(), Loc.unbridged()}; |
| 979 | + } |
| 980 | +#endif |
| 981 | +}; |
| 982 | + |
| 983 | +class BridgedStmtConditionElement { |
| 984 | + void *_Nonnull Raw; |
| 985 | + |
| 986 | +public: |
| 987 | +#ifdef USED_IN_CPP_SOURCE |
| 988 | + BridgedStmtConditionElement(swift::StmtConditionElement elem) |
| 989 | + : Raw(elem.getOpaqueValue()) {} |
| 990 | + |
| 991 | + swift::StmtConditionElement unbridged() const { |
| 992 | + return swift::StmtConditionElement::fromOpaqueValue(Raw); |
| 993 | + } |
| 994 | +#endif |
| 995 | +}; |
| 996 | + |
| 997 | +SWIFT_NAME("BridgedStmtConditionElement.createBoolean(expr:)") |
| 998 | +BridgedStmtConditionElement |
| 999 | +BridgedStmtConditionElement_createBoolean(BridgedExpr expr); |
| 1000 | + |
| 1001 | +SWIFT_NAME("BridgedStmtConditionElement.createPatternBinding(_:introducerLoc:" |
| 1002 | + "pattern:initializer:)") |
| 1003 | +BridgedStmtConditionElement BridgedStmtConditionElement_createPatternBinding( |
| 1004 | + BridgedASTContext cContext, BridgedSourceLoc cIntroducerLoc, |
| 1005 | + BridgedPattern cPattern, BridgedExpr cInitializer); |
| 1006 | + |
| 1007 | +struct BridgedCaseLabelItemInfo { |
| 1008 | + SWIFT_NAME("isDefault") |
| 1009 | + bool IsDefault; |
| 1010 | + SWIFT_NAME("pattern") |
| 1011 | + BridgedPattern ThePattern; |
| 1012 | + SWIFT_NAME("whereLoc") |
| 1013 | + BridgedSourceLoc WhereLoc; |
| 1014 | + SWIFT_NAME("guardExpr") |
| 1015 | + BridgedNullableExpr GuardExpr; |
| 1016 | +}; |
| 1017 | + |
948 | 1018 | SWIFT_NAME("BridgedBraceStmt.createParsed(_:lBraceLoc:elements:rBraceLoc:)")
|
949 | 1019 | BridgedBraceStmt BridgedBraceStmt_createParsed(BridgedASTContext cContext,
|
950 | 1020 | BridgedSourceLoc cLBLoc,
|
951 | 1021 | BridgedArrayRef elements,
|
952 | 1022 | BridgedSourceLoc cRBLoc);
|
953 | 1023 |
|
954 |
| -SWIFT_NAME("BridgedIfStmt.createParsed(_:ifKeywordLoc:condition:thenStmt:" |
955 |
| - "elseLoc:elseStmt:)") |
956 |
| -BridgedIfStmt BridgedIfStmt_createParsed(BridgedASTContext cContext, |
957 |
| - BridgedSourceLoc cIfLoc, |
958 |
| - BridgedExpr cond, |
959 |
| - BridgedBraceStmt then, |
960 |
| - BridgedSourceLoc cElseLoc, |
961 |
| - BridgedNullableStmt elseStmt); |
| 1024 | +SWIFT_NAME("BridgedBreakStmt.createParsed(_:loc:targetName:targetLoc:)") |
| 1025 | +BridgedBreakStmt BridgedBreakStmt_createParsed(BridgedDeclContext cDeclContext, |
| 1026 | + BridgedSourceLoc cLoc, |
| 1027 | + BridgedIdentifier cTargetName, |
| 1028 | + BridgedSourceLoc cTargetLoc); |
| 1029 | + |
| 1030 | +SWIFT_NAME("BridgedCaseStmt.createParsedSwitchCase(_:introducerLoc:" |
| 1031 | + "caseLabelItems:unknownAttrLoc:terminatorLoc:body:)") |
| 1032 | +BridgedCaseStmt BridgedCaseStmt_createParsedSwitchCase( |
| 1033 | + BridgedASTContext cContext, BridgedSourceLoc cIntroducerLoc, |
| 1034 | + BridgedArrayRef cCaseLabelItems, BridgedSourceLoc cUnknownAttrLoc, |
| 1035 | + BridgedSourceLoc cTerminatorLoc, BridgedBraceStmt cBody); |
| 1036 | + |
| 1037 | +SWIFT_NAME( |
| 1038 | + "BridgedCaseStmt.createParsedDoCatch(_:catchLoc:caseLabelItems:body:)") |
| 1039 | +BridgedCaseStmt BridgedCaseStmt_createParsedDoCatch( |
| 1040 | + BridgedASTContext cContext, BridgedSourceLoc cCatchLoc, |
| 1041 | + BridgedArrayRef cCaseLabelItems, BridgedBraceStmt cBody); |
| 1042 | + |
| 1043 | +SWIFT_NAME("BridgedContinueStmt.createParsed(_:loc:targetName:targetLoc:)") |
| 1044 | +BridgedContinueStmt BridgedContinueStmt_createParsed( |
| 1045 | + BridgedDeclContext cDeclContext, BridgedSourceLoc cLoc, |
| 1046 | + BridgedIdentifier cTargetName, BridgedSourceLoc cTargetLoc); |
| 1047 | + |
| 1048 | +SWIFT_NAME("BridgedDeferStmt.createParsed(_:deferLoc:)") |
| 1049 | +BridgedDeferStmt BridgedDeferStmt_createParsed(BridgedDeclContext cDeclContext, |
| 1050 | + BridgedSourceLoc cDeferLoc); |
| 1051 | + |
| 1052 | +SWIFT_NAME("getter:BridgedDeferStmt.tempDecl(self:)") |
| 1053 | +BridgedFuncDecl BridgedDeferStmt_getTempDecl(BridgedDeferStmt bridged); |
| 1054 | + |
| 1055 | +SWIFT_NAME("BridgedDiscardStmt.createParsed(_:discardLoc:subExpr:)") |
| 1056 | +BridgedDiscardStmt BridgedDiscardStmt_createParsed(BridgedASTContext cContext, |
| 1057 | + BridgedSourceLoc cDiscardLoc, |
| 1058 | + BridgedExpr cSubExpr); |
| 1059 | + |
| 1060 | +SWIFT_NAME("BridgedDoStmt.createParsed(_:labelInfo:doLoc:body:)") |
| 1061 | +BridgedDoStmt BridgedDoStmt_createParsed(BridgedASTContext cContext, |
| 1062 | + BridgedLabeledStmtInfo cLabelInfo, |
| 1063 | + BridgedSourceLoc cDoLoc, |
| 1064 | + BridgedBraceStmt cBody); |
962 | 1065 |
|
963 |
| -SWIFT_NAME("BridgedReturnStmt.createParsed(_:returnKeywordLoc:expr:)") |
| 1066 | +SWIFT_NAME( |
| 1067 | + "BridgedDoCatchStmt.createParsed(_:labelInfo:doLoc:throwsLoc:thrownType:" |
| 1068 | + "body:catches:)") |
| 1069 | +BridgedDoCatchStmt BridgedDoCatchStmt_createParsed( |
| 1070 | + BridgedDeclContext cDeclContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1071 | + BridgedSourceLoc cDoLoc, BridgedSourceLoc cThrowsLoc, |
| 1072 | + BridgedNullableTypeRepr cThrownType, BridgedStmt cBody, |
| 1073 | + BridgedArrayRef cCatches); |
| 1074 | + |
| 1075 | +SWIFT_NAME("BridgedFallthroughStmt.createParsed(_:loc:)") |
| 1076 | +BridgedFallthroughStmt |
| 1077 | +BridgedFallthroughStmt_createParsed(BridgedASTContext cContext, |
| 1078 | + BridgedSourceLoc cLoc); |
| 1079 | + |
| 1080 | +SWIFT_NAME("BridgedForEachStmt.createParsed(_:labelInfo:forLoc:tryLoc:awaitLoc:" |
| 1081 | + "pattern:inLoc:sequence:whereLoc:whereExpr:body:)") |
| 1082 | +BridgedForEachStmt BridgedForEachStmt_createParsed( |
| 1083 | + BridgedASTContext cContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1084 | + BridgedSourceLoc cForLoc, BridgedSourceLoc cTryLoc, |
| 1085 | + BridgedSourceLoc cAwaitLoc, BridgedPattern cPat, BridgedSourceLoc cInLoc, |
| 1086 | + BridgedExpr cSequence, BridgedSourceLoc cWhereLoc, |
| 1087 | + BridgedNullableExpr cWhereExpr, BridgedBraceStmt cBody); |
| 1088 | + |
| 1089 | +SWIFT_NAME("BridgedGuardStmt.createParsed(_:guardLoc:conds:body:)") |
| 1090 | +BridgedGuardStmt BridgedGuardStmt_createParsed(BridgedASTContext cContext, |
| 1091 | + BridgedSourceLoc cGuardLoc, |
| 1092 | + BridgedArrayRef cConds, |
| 1093 | + BridgedBraceStmt cBody); |
| 1094 | + |
| 1095 | +SWIFT_NAME("BridgedIfStmt.createParsed(_:labelInfo:ifLoc:conditions:then:" |
| 1096 | + "elseLoc:else:)") |
| 1097 | +BridgedIfStmt BridgedIfStmt_createParsed( |
| 1098 | + BridgedASTContext cContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1099 | + BridgedSourceLoc cIfLoc, BridgedArrayRef cConds, BridgedBraceStmt cThen, |
| 1100 | + BridgedSourceLoc cElseLoc, BridgedNullableStmt cElse); |
| 1101 | + |
| 1102 | +SWIFT_NAME("BridgedRepeatWhileStmt.createParsed(_:labelInfo:repeatLoc:cond:" |
| 1103 | + "whileLoc:body:)") |
| 1104 | +BridgedRepeatWhileStmt BridgedRepeatWhileStmt_createParsed( |
| 1105 | + BridgedASTContext cContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1106 | + BridgedSourceLoc cRepeatLoc, BridgedExpr cCond, BridgedSourceLoc cWhileLoc, |
| 1107 | + BridgedStmt cBody); |
| 1108 | + |
| 1109 | +SWIFT_NAME("BridgedReturnStmt.createParsed(_:loc:expr:)") |
964 | 1110 | BridgedReturnStmt BridgedReturnStmt_createParsed(BridgedASTContext cContext,
|
965 | 1111 | BridgedSourceLoc cLoc,
|
966 | 1112 | BridgedNullableExpr expr);
|
967 | 1113 |
|
| 1114 | +SWIFT_NAME("BridgedSwitchStmt.createParsed(_:labelInfo:switchLoc:subjectExpr:" |
| 1115 | + "lBraceLoc:cases:rBraceLoc:)") |
| 1116 | +BridgedSwitchStmt BridgedSwitchStmt_createParsed( |
| 1117 | + BridgedASTContext cContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1118 | + BridgedSourceLoc cSwitchLoc, BridgedExpr cSubjectExpr, |
| 1119 | + BridgedSourceLoc cLBraceLoc, BridgedArrayRef cCases, |
| 1120 | + BridgedSourceLoc cRBraceLoc); |
| 1121 | + |
| 1122 | +SWIFT_NAME("BridgedThenStmt.createParsed(_:thenLoc:result:)") |
| 1123 | +BridgedThenStmt BridgedThenStmt_createParsed(BridgedASTContext cContext, |
| 1124 | + BridgedSourceLoc cThenLoc, |
| 1125 | + BridgedExpr cResult); |
| 1126 | + |
| 1127 | +SWIFT_NAME("BridgedThrowStmt.createParsed(_:throwLoc:subExpr:)") |
| 1128 | +BridgedThrowStmt BridgedThrowStmt_createParsed(BridgedASTContext cContext, |
| 1129 | + BridgedSourceLoc cThrowLoc, |
| 1130 | + BridgedExpr cSubExpr); |
| 1131 | + |
| 1132 | +SWIFT_NAME("BridgedWhileStmt.createParsed(_:labelInfo:whileLoc:cond:body:)") |
| 1133 | +BridgedWhileStmt BridgedWhileStmt_createParsed( |
| 1134 | + BridgedASTContext cContext, BridgedLabeledStmtInfo cLabelInfo, |
| 1135 | + BridgedSourceLoc cWhileLoc, BridgedArrayRef cCond, BridgedStmt cBody); |
| 1136 | + |
| 1137 | +SWIFT_NAME( |
| 1138 | + "BridgedYieldStmt.createParsed(_:yieldLoc:lParenLoc:yields:rParenLoc:)") |
| 1139 | +BridgedYieldStmt BridgedYieldStmt_createParsed(BridgedASTContext cContext, |
| 1140 | + BridgedSourceLoc cYieldLoc, |
| 1141 | + BridgedSourceLoc cLParenLoc, |
| 1142 | + BridgedArrayRef cYields, |
| 1143 | + BridgedSourceLoc cRParenLoc); |
| 1144 | + |
968 | 1145 | SWIFT_NAME("BridgedStmt.dump(self:)")
|
969 | 1146 | void BridgedStmt_dump(BridgedStmt statement);
|
970 | 1147 |
|
@@ -1214,6 +1391,11 @@ BridgedBindingPattern_createParsed(BridgedASTContext cContext,
|
1214 | 1391 | BridgedSourceLoc cKeywordLoc, bool isLet,
|
1215 | 1392 | BridgedPattern cSubPattern);
|
1216 | 1393 |
|
| 1394 | +SWIFT_NAME("BridgedBindingPattern.createImplicitCatch(_:loc:)") |
| 1395 | +BridgedBindingPattern |
| 1396 | +BridgedBindingPattern_createImplicitCatch(BridgedDeclContext cDeclContext, |
| 1397 | + BridgedSourceLoc cLoc); |
| 1398 | + |
1217 | 1399 | SWIFT_NAME("BridgedExprPattern.createParsed(_:expr:)")
|
1218 | 1400 | BridgedExprPattern
|
1219 | 1401 | BridgedExprPattern_createParsed(BridgedDeclContext cDeclContext,
|
@@ -1256,6 +1438,12 @@ SWIFT_NAME("BridgedTypedPattern.createPropagated(_:pattern:type:)")
|
1256 | 1438 | BridgedTypedPattern BridgedTypedPattern_createPropagated(
|
1257 | 1439 | BridgedASTContext cContext, BridgedPattern cPattern, BridgedTypeRepr cType);
|
1258 | 1440 |
|
| 1441 | +SWIFT_NAME("BridgedPattern.setImplicit(self:)") |
| 1442 | +void BridgedPattern_setImplicit(BridgedPattern cPattern); |
| 1443 | + |
| 1444 | +SWIFT_NAME("getter:BridgedPattern.boundName(self:)") |
| 1445 | +BridgedIdentifier BridgedPattern_getBoundName(BridgedPattern cPattern); |
| 1446 | + |
1259 | 1447 | //===----------------------------------------------------------------------===//
|
1260 | 1448 | // MARK: Misc
|
1261 | 1449 | //===----------------------------------------------------------------------===//
|
|
0 commit comments