Skip to content

Commit

Permalink
Assignment corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
fforay committed Dec 29, 2020
1 parent 7ea60d0 commit 07284aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ILSpy.XSharpLanguage/XSharpOptionPage.xaml.prg
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage

PUBLIC CONSTRUCTOR()
SELF:_upperkeyword := TRUE
SELF:_ifstatement = TRUE
SELF:_ifstatement := TRUE

PUBLIC CONSTRUCTOR( e AS XElement )
LOCAL attr AS XAttribute
Expand Down
4 changes: 2 additions & 2 deletions ILSpy.XSharpLanguage/XSharpOutputVisitor.prg
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage
IF ((node:Role == CustomEventDeclaration.AddAccessorRole) .OR. (node:Role == CustomEventDeclaration.RemoveAccessorRole))
//
node:AcceptVisitor(SELF)
bodyStarted = TRUE
bodyStarted := TRUE
ENDIF
NEXT
SELF:CloseBrace(SELF:policy:EventBraceStyle)
Expand Down Expand Up @@ -1436,7 +1436,7 @@ BEGIN NAMESPACE ILSpy.XSharpLanguage

VIRTUAL METHOD VisitIfElseStatement(ifElseStatement AS IfElseStatement) AS VOID
LOCAL addParenthesis AS LOGIC
addParenthesis = FALSE
addParenthesis := FALSE
//
SELF:StartNode(ifElseStatement)
//SELF:WriteKeyword(IfElseStatement.IfKeywordRole)
Expand Down

0 comments on commit 07284aa

Please sign in to comment.