@@ -644,6 +644,14 @@ BridgedStringRef BridgedVarDecl_getUserFacingName(BridgedVarDecl decl);
644
644
// MARK: Exprs
645
645
// ===----------------------------------------------------------------------===//
646
646
647
+ SWIFT_NAME (" BridgedArrayExpr.createParsed(_:lSquareLoc:elements:commaLocs:"
648
+ " rSquareLoc:)" )
649
+ BridgedArrayExpr BridgedArrayExpr_createParsed(BridgedASTContext cContext,
650
+ BridgedSourceLoc cLLoc,
651
+ BridgedArrayRef elements,
652
+ BridgedArrayRef commas,
653
+ BridgedSourceLoc cRLoc);
654
+
647
655
SWIFT_NAME (
648
656
" BridgedArrowExpr.createParsed(_:asyncLoc:throwsLoc:thrownType:arrowLoc:)" )
649
657
BridgedArrowExpr BridgedArrowExpr_createParsed(BridgedASTContext cContext,
@@ -661,6 +669,11 @@ BridgedAwaitExpr BridgedAwaitExpr_createParsed(BridgedASTContext cContext,
661
669
BridgedSourceLoc cAwaitLoc,
662
670
BridgedExpr cSubExpr);
663
671
672
+ SWIFT_NAME (" BridgedBooleanLiteralExpr.createParsed(_:value:loc:)" )
673
+ BridgedBooleanLiteralExpr
674
+ BridgedBooleanLiteralExpr_createParsed(BridgedASTContext cContext, bool value,
675
+ BridgedSourceLoc cTokenLoc);
676
+
664
677
SWIFT_NAME (" BridgedBorrowExpr.createParsed(_:borrowLoc:subExpr:)" )
665
678
BridgedBorrowExpr BridgedBorrowExpr_createParsed(BridgedASTContext cContext,
666
679
BridgedSourceLoc cBorrowLoc,
@@ -700,18 +713,18 @@ BridgedCopyExpr BridgedCopyExpr_createParsed(BridgedASTContext cContext,
700
713
BridgedSourceLoc cCopyLoc,
701
714
BridgedExpr cSubExpr);
702
715
703
- SWIFT_NAME (" BridgedDiscardAssignmentExpr.createParsed(_:loc:)" )
704
- BridgedDiscardAssignmentExpr
705
- BridgedDiscardAssignmentExpr_createParsed(BridgedASTContext cContext,
706
- BridgedSourceLoc cLoc);
707
-
708
716
SWIFT_NAME (" BridgedDictionaryExpr.createParsed(_:lBracketLoc:elements:"
709
717
" colonLocs:rBracketLoc:)" )
710
718
BridgedDictionaryExpr BridgedDictionaryExpr_createParsed(
711
719
BridgedASTContext cContext, BridgedSourceLoc cLBracketLoc,
712
720
BridgedArrayRef cElements, BridgedArrayRef cCommaLocs,
713
721
BridgedSourceLoc cRBracketLoc);
714
722
723
+ SWIFT_NAME (" BridgedDiscardAssignmentExpr.createParsed(_:loc:)" )
724
+ BridgedDiscardAssignmentExpr
725
+ BridgedDiscardAssignmentExpr_createParsed(BridgedASTContext cContext,
726
+ BridgedSourceLoc cLoc);
727
+
715
728
SWIFT_NAME (" BridgedDotSelfExpr.createParsed(_:subExpr:dotLoc:selfLoc:)" )
716
729
BridgedDotSelfExpr BridgedDotSelfExpr_createParsed(BridgedASTContext cContext,
717
730
BridgedExpr cSubExpr,
@@ -730,11 +743,22 @@ BridgedForcedCheckedCastExpr BridgedForcedCheckedCastExpr_createParsed(
730
743
BridgedASTContext cContext, BridgedSourceLoc cAsLoc,
731
744
BridgedSourceLoc cExclaimLoc, BridgedTypeRepr cType);
732
745
746
+ SWIFT_NAME (" BridgedIntegerLiteralExpr.createParsed(_:value:loc:)" )
747
+ BridgedIntegerLiteralExpr
748
+ BridgedIntegerLiteralExpr_createParsed(BridgedASTContext cContext,
749
+ BridgedStringRef cStr,
750
+ BridgedSourceLoc cTokenLoc);
751
+
733
752
SWIFT_NAME (" BridgedIsExpr.createParsed(_:isLoc:type:)" )
734
753
BridgedIsExpr BridgedIsExpr_createParsed(BridgedASTContext cContext,
735
754
BridgedSourceLoc cIsLoc,
736
755
BridgedTypeRepr cType);
737
756
757
+ SWIFT_NAME (" BridgedNilLiteralExpr.createParsed(_:nilKeywordLoc:)" )
758
+ BridgedNilLiteralExpr
759
+ BridgedNilLiteralExpr_createParsed(BridgedASTContext cContext,
760
+ BridgedSourceLoc cNilKeywordLoc);
761
+
738
762
SWIFT_NAME (" BridgedOptionalTryExpr.createParsed(_:tryLoc:subExpr:questionLoc:)" )
739
763
BridgedOptionalTryExpr BridgedOptionalTryExpr_createParsed(
740
764
BridgedASTContext cContext, BridgedSourceLoc cTryLoc, BridgedExpr cSubExpr,
@@ -752,6 +776,20 @@ BridgedPackExpansionExpr_createParsed(BridgedASTContext cContext,
752
776
BridgedSourceLoc cRepeatLoc,
753
777
BridgedExpr cPatternExpr);
754
778
779
+ SWIFT_NAME (" BridgedPostfixUnaryExpr.createParsed(_:operator:operand:)" )
780
+ BridgedPostfixUnaryExpr
781
+ BridgedPostfixUnaryExpr_createParsed(BridgedASTContext cContext,
782
+ BridgedExpr oper, BridgedExpr operand);
783
+
784
+ SWIFT_NAME (" BridgedPrefixUnaryExpr.createParsed(_:operator:operand:)" )
785
+ BridgedPrefixUnaryExpr
786
+ BridgedPrefixUnaryExpr_createParsed(BridgedASTContext cContext,
787
+ BridgedExpr oper, BridgedExpr operand);
788
+
789
+ SWIFT_NAME (" BridgedSequenceExpr.createParsed(_:exprs:)" )
790
+ BridgedSequenceExpr BridgedSequenceExpr_createParsed(BridgedASTContext cContext,
791
+ BridgedArrayRef exprs);
792
+
755
793
SWIFT_NAME (" BridgedSingleValueStmtExpr.createWithWrappedBranches(_:stmt:"
756
794
" declContext:mustBeExpr:)" )
757
795
BridgedSingleValueStmtExpr BridgedSingleValueStmtExpr_createWithWrappedBranches(
@@ -764,10 +802,6 @@ BridgedStringLiteralExpr_createParsed(BridgedASTContext cContext,
764
802
BridgedStringRef cStr,
765
803
BridgedSourceLoc cTokenLoc);
766
804
767
- SWIFT_NAME (" BridgedSequenceExpr.createParsed(_:exprs:)" )
768
- BridgedSequenceExpr BridgedSequenceExpr_createParsed(BridgedASTContext cContext,
769
- BridgedArrayRef exprs);
770
-
771
805
SWIFT_NAME (" BridgedTernaryExpr.createParsed(_:questionLoc:thenExpr:colonLoc:)" )
772
806
BridgedTernaryExpr BridgedTernaryExpr_createParsed(
773
807
BridgedASTContext cContext, BridgedSourceLoc cQuestionLoc,
@@ -788,40 +822,6 @@ SWIFT_NAME("BridgedTupleExpr.createParsedDictionaryElement(_:key:value:)")
788
822
BridgedTupleExpr BridgedTupleExpr_createParsedDictionaryElement(
789
823
BridgedASTContext cContext, BridgedExpr cKeyExpr, BridgedExpr cValueExpr);
790
824
791
- SWIFT_NAME (" BridgedIntegerLiteralExpr.createParsed(_:value:loc:)" )
792
- BridgedIntegerLiteralExpr
793
- BridgedIntegerLiteralExpr_createParsed(BridgedASTContext cContext,
794
- BridgedStringRef cStr,
795
- BridgedSourceLoc cTokenLoc);
796
-
797
- SWIFT_NAME (" BridgedBooleanLiteralExpr.createParsed(_:value:loc:)" )
798
- BridgedBooleanLiteralExpr
799
- BridgedBooleanLiteralExpr_createParsed(BridgedASTContext cContext, bool value,
800
- BridgedSourceLoc cTokenLoc);
801
-
802
- SWIFT_NAME (" BridgedNilLiteralExpr.createParsed(_:nilKeywordLoc:)" )
803
- BridgedNilLiteralExpr
804
- BridgedNilLiteralExpr_createParsed(BridgedASTContext cContext,
805
- BridgedSourceLoc cNilKeywordLoc);
806
-
807
- SWIFT_NAME (" BridgedArrayExpr.createParsed(_:lSquareLoc:elements:commaLocs:"
808
- " rSquareLoc:)" )
809
- BridgedArrayExpr BridgedArrayExpr_createParsed(BridgedASTContext cContext,
810
- BridgedSourceLoc cLLoc,
811
- BridgedArrayRef elements,
812
- BridgedArrayRef commas,
813
- BridgedSourceLoc cRLoc);
814
-
815
- SWIFT_NAME (" BridgedPostfixUnaryExpr.createParsed(_:operator:operand:)" )
816
- BridgedPostfixUnaryExpr
817
- BridgedPostfixUnaryExpr_createParsed(BridgedASTContext cContext,
818
- BridgedExpr oper, BridgedExpr operand);
819
-
820
- SWIFT_NAME (" BridgedPrefixUnaryExpr.createParsed(_:operator:operand:)" )
821
- BridgedPrefixUnaryExpr
822
- BridgedPrefixUnaryExpr_createParsed(BridgedASTContext cContext,
823
- BridgedExpr oper, BridgedExpr operand);
824
-
825
825
SWIFT_NAME (" BridgedTypeExpr.createParsed(_:type:)" )
826
826
BridgedTypeExpr BridgedTypeExpr_createParsed(BridgedASTContext cContext,
827
827
BridgedTypeRepr cType);
0 commit comments