File tree Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -1059,12 +1059,6 @@ extension Parser {
1059
1059
poundColumn: tok,
1060
1060
arena: self . arena
1061
1061
) )
1062
- case ( . poundDsohandleKeyword, let handle) ? :
1063
- let tok = self . eat ( handle)
1064
- return RawExprSyntax ( RawPoundDsohandleExprSyntax (
1065
- poundDsohandle: tok,
1066
- arena: self . arena
1067
- ) )
1068
1062
case ( . __dso_handle__Keyword, let handle) ? :
1069
1063
let tok = self . eat ( handle)
1070
1064
return RawExprSyntax ( RawPoundDsohandleExprSyntax (
Original file line number Diff line number Diff line change @@ -1544,7 +1544,6 @@ extension Lexer.Cursor {
1544
1544
case " fileID " : kind = . poundFileIDKeyword
1545
1545
case " filePath " : kind = . poundFilePathKeyword
1546
1546
case " function " : kind = . poundFunctionKeyword
1547
- case " dsohandle " : kind = . poundDsohandleKeyword
1548
1547
case " assert " : kind = . poundAssertKeyword
1549
1548
case " sourceLocation " : kind = . poundSourceLocationKeyword
1550
1549
case " warning " : kind = . poundWarningKeyword
Original file line number Diff line number Diff line change @@ -739,7 +739,6 @@ enum PrimaryExpressionStart: RawTokenKindSubset {
739
739
case period
740
740
case pound
741
741
case poundColorLiteralKeyword
742
- case poundDsohandleKeyword
743
742
case poundFileIDKeyword
744
743
case poundFileKeyword
745
744
case poundFileLiteralKeyword
@@ -777,7 +776,6 @@ enum PrimaryExpressionStart: RawTokenKindSubset {
777
776
case . period: self = . period
778
777
case . pound: self = . pound
779
778
case . poundColorLiteralKeyword: self = . poundColorLiteralKeyword
780
- case . poundDsohandleKeyword: self = . poundDsohandleKeyword
781
779
case . poundFileIDKeyword: self = . poundFileIDKeyword
782
780
case . poundFileKeyword: self = . poundFileKeyword
783
781
case . poundFileLiteralKeyword: self = . poundFileLiteralKeyword
@@ -818,7 +816,6 @@ enum PrimaryExpressionStart: RawTokenKindSubset {
818
816
case . period: return . period
819
817
case . pound: return . pound
820
818
case . poundColorLiteralKeyword: return . poundColorLiteralKeyword
821
- case . poundDsohandleKeyword: return . poundDsohandleKeyword
822
819
case . poundFileIDKeyword: return . poundFileIDKeyword
823
820
case . poundFileKeyword: return . poundFileKeyword
824
821
case . poundFileLiteralKeyword: return . poundFileLiteralKeyword
You can’t perform that action at this time.
0 commit comments