-
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 #334 from BalticAmadeus/312-class-statements-with-…
…several-whitespaces-before-the-colon-are-formatted-incorrectly Test 312 Class statements with several whitespaces before the colon are formatted incorrectly
- Loading branch information
Showing
6 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
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,13 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
class Cosmos.DataAdmin.DataSource.GalaxyUserPermissionDataSource inherits GalaxyUserDataSource : | ||
|
||
define variable cometSave as logical no-undo. | ||
define private property NebulaTenantURL as character no-undo get. set. | ||
|
||
define public property StarExternalIDValue as character no-undo get. private set. | ||
|
||
define private variable constellationMapping as char | ||
init "NebulaConstellation". | ||
no-undo. | ||
end class. |
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,15 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
class Cosmos.DataAdmin.DataSource.GalaxyUserPermissionDataSource inherits GalaxyUserDataSource : | ||
|
||
define variable cometSave as logical no-undo. | ||
define private property NebulaTenantURL as character no-undo | ||
get. | ||
set. | ||
|
||
define public property StarExternalIDValue as character no-undo | ||
get. | ||
private set. | ||
|
||
define private variable constellationMapping as char init "NebulaConstellation". no-undo. | ||
end class. |
13 changes: 13 additions & 0 deletions
13
resources/functionalTests/block/62-class-abstract-use-widget-pool/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,13 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
CLASS Nebula.Galactic.ModelFilter.StarModelFilter | ||
ABSTRACT USE-WIDGET-POOL: DEFINE VARIABLE oStarModel AS StarModel NO-UNDO . | ||
|
||
|
||
CONSTRUCTOR PUBLIC StarModelFilter (poStarModel AS StarModel): | ||
SUPER (). | ||
|
||
ASSIGN oStarModel = poStarModel . | ||
|
||
END CONSTRUCTOR. | ||
END CLASS. |
16 changes: 16 additions & 0 deletions
16
resources/functionalTests/block/62-class-abstract-use-widget-pool/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,16 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
CLASS Nebula.Galactic.ModelFilter.StarModelFilter | ||
ABSTRACT USE-WIDGET-POOL: | ||
DEFINE VARIABLE oStarModel AS StarModel NO-UNDO. | ||
|
||
|
||
CONSTRUCTOR PUBLIC StarModelFilter(poStarModel AS StarModel): | ||
SUPER (). | ||
|
||
ASSIGN | ||
oStarModel = poStarModel | ||
. | ||
|
||
END CONSTRUCTOR. | ||
END CLASS. |
14 changes: 14 additions & 0 deletions
14
resources/functionalTests/block/63-class-inherits-implements-serializable/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,14 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
CLASS Nebula.Galactic.CosmicService.StarHandler.GalaxyMethodNotAllowedException | ||
INHERITS Supernova | ||
IMPLEMENTS IAstro405Error | ||
SERIALIZABLE : | ||
|
||
/** Default constructor | ||
*/ | ||
CONSTRUCTOR PUBLIC GalaxyMethodNotAllowedException(): | ||
SUPER("Did you know? A day on Venus is longer than a year on Venus!":u, 0). | ||
END CONSTRUCTOR. | ||
|
||
END CLASS. |
14 changes: 14 additions & 0 deletions
14
resources/functionalTests/block/63-class-inherits-implements-serializable/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,14 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
CLASS Nebula.Galactic.CosmicService.StarHandler.GalaxyMethodNotAllowedException | ||
INHERITS Supernova | ||
IMPLEMENTS IAstro405Error | ||
SERIALIZABLE : | ||
|
||
/** Default constructor | ||
*/ | ||
CONSTRUCTOR PUBLIC GalaxyMethodNotAllowedException(): | ||
SUPER("Did you know? A day on Venus is longer than a year on Venus!":u, 0). | ||
END CONSTRUCTOR. | ||
|
||
END CLASS. |