File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1867,12 +1867,12 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
1867
1867
SELF :WriteModifiers (operatorDeclaration :ModifierTokens )
1868
1868
IF (operatorDeclaration :OperatorType == OperatorType.Explicit)
1869
1869
//
1870
- SELF :WriteKeyword (OperatorDeclaration.ExplicitRole)
1870
+ // SELF:WriteKeyword(OperatorDeclaration.ExplicitRole)
1871
1871
ELSE
1872
1872
//
1873
1873
IF (operatorDeclaration :OperatorType == OperatorType.Implicit)
1874
1874
//
1875
- SELF :WriteKeyword (OperatorDeclaration.ImplicitRole)
1875
+ // SELF:WriteKeyword(OperatorDeclaration.ImplicitRole)
1876
1876
ELSE
1877
1877
//
1878
1878
needReturnType := TRUE
@@ -1900,6 +1900,11 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
1900
1900
ENDIF
1901
1901
//
1902
1902
SELF :WriteMethodBody (operatorDeclaration :Body , SELF :policy :MethodBraceStyle )
1903
+ //
1904
+ SELF :WriteKeyword ( "END" )
1905
+ SELF :Space (TRUE )
1906
+ SELF :WriteKeyword ( "OPERATOR" )
1907
+ SELF :NewLine ()
1903
1908
SELF :EndNode (operatorDeclaration)
1904
1909
1905
1910
PRIVATE METHOD VisitOptionalNode (optionalNode AS OptionalNode) AS VOID
You can’t perform that action at this time.
0 commit comments