Skip to content

Commit 07284aa

Browse files
committed
Assignment corrections
1 parent 7ea60d0 commit 07284aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ILSpy.XSharpLanguage/XSharpOptionPage.xaml.prg

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
8484

8585
PUBLIC CONSTRUCTOR()
8686
SELF:_upperkeyword := TRUE
87-
SELF:_ifstatement = TRUE
87+
SELF:_ifstatement := TRUE
8888

8989
PUBLIC CONSTRUCTOR( e AS XElement )
9090
LOCAL attr AS XAttribute

ILSpy.XSharpLanguage/XSharpOutputVisitor.prg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
10361036
IF ((node:Role == CustomEventDeclaration.AddAccessorRole) .OR. (node:Role == CustomEventDeclaration.RemoveAccessorRole))
10371037
//
10381038
node:AcceptVisitor(SELF)
1039-
bodyStarted = TRUE
1039+
bodyStarted := TRUE
10401040
ENDIF
10411041
NEXT
10421042
SELF:CloseBrace(SELF:policy:EventBraceStyle)
@@ -1436,7 +1436,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
14361436

14371437
VIRTUAL METHOD VisitIfElseStatement(ifElseStatement AS IfElseStatement) AS VOID
14381438
LOCAL addParenthesis AS LOGIC
1439-
addParenthesis = FALSE
1439+
addParenthesis := FALSE
14401440
//
14411441
SELF:StartNode(ifElseStatement)
14421442
//SELF:WriteKeyword(IfElseStatement.IfKeywordRole)

0 commit comments

Comments
 (0)