-
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.
- Loading branch information
gmickus
committed
Sep 27, 2024
1 parent
5756e89
commit 4f49ffe
Showing
13 changed files
with
92 additions
and
41 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,21 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.bodyFormatting": true, | ||
"AblFormatter.enumFormatting": true}*/ | ||
|
||
ENUM Oper: | ||
DEFINE ENUM | ||
Invalid = 0 | ||
Create = 1 | ||
Delete = 2 | ||
BeforeUpdate = 3 | ||
AfterUpdate = 4 | ||
FieldDelete = 5 | ||
PartitionDrop = 6 | ||
PartitionTruncate = 7 | ||
PartitionDeallocate = 8 | ||
MTPartitionDeallocate = 9 | ||
MTPartitionDrop = 10 | ||
MergePartitionDrop = 11 | ||
FieldAdd = 12. | ||
END ENUM. | ||
|
20 changes: 20 additions & 0 deletions
20
resources/functionalTests/enum/1-enum-with-values/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,20 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.bodyFormatting": true, | ||
"AblFormatter.enumFormatting": true}*/ | ||
|
||
ENUM Oper: | ||
define ENUM Invalid = 0 | ||
Create = 1 | ||
Delete = 2 | ||
BeforeUpdate = 3 | ||
AfterUpdate = 4 | ||
FieldDelete = 5 | ||
PartitionDrop = 6 | ||
PartitionTruncate = 7 | ||
PartitionDeallocate = 8 | ||
MTPartitionDeallocate = 9 | ||
MTPartitionDrop = 10 | ||
MergePartitionDrop = 11 | ||
FieldAdd = 12. | ||
END ENUM. | ||
|
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.bodyFormatting": true, | ||
"AblFormatter.enumFormatting": true}*/ | ||
|
||
ENUM LiteraryMood FLAGS: | ||
define ENUM None = 0 | ||
Joyful | ||
Melancholy | ||
Heroic | ||
Whimsical | ||
Epic | ||
JoyfulMelancholy = Joyful,Melancholy | ||
Tragic = Epic. | ||
END ENUM. |
File renamed without changes.
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,10 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
ENUM Weather: | ||
define ENUM Rainy | ||
Default = Sunny | ||
Cloudy | ||
Snowy | ||
Apocalyptic . | ||
END ENUM. |
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,10 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.blockFormatting": true}*/ | ||
|
||
ENUM Weather: | ||
define ENUM Rainy | ||
Default = Sunny | ||
Cloudy | ||
Snowy | ||
Apocalyptic. | ||
END ENUM. |
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,10 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.bodyFormatting": true, | ||
"AblFormatter.enumFormatting": true}*/ | ||
|
||
ENUM Direction: | ||
define ENUM North | ||
South. | ||
define ENUM Dog | ||
Cat. | ||
END ENUM. |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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