-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from BalticAmadeus/202-the-colon-of-some-bloc…
…ks-jumps-to-the-next-line-if-there-are-spaces-before-it 202 the colon of some blocks jumps to the next line if there are spaces before it
- Loading branch information
Showing
5 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
resources/functionalTests/block/10finally-block-colon/input.p
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
finally : | ||
message "Inside FINALLY block." view-as alert-box. | ||
end finally. |
6 changes: 6 additions & 0 deletions
6
resources/functionalTests/block/10finally-block-colon/target.p
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
finally : | ||
message "Inside FINALLY block." view-as alert-box. | ||
end finally. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
catch oFunkyError as Progress.Lang.AppError : oGroovyResponse:errorStatus = true. | ||
oGroovyResponse:addMessage(oFunkyError:GetMessage(1)). | ||
return oGroovyResponse. | ||
end catch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
catch oFunkyError as Progress.Lang.AppError: | ||
oGroovyResponse:errorStatus = true. | ||
oGroovyResponse:addMessage(oFunkyError:GetMessage(1)). | ||
return oGroovyResponse. | ||
end catch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters