Skip to content

Commit 5416fff

Browse files
authored
Merge pull request #140 from BalticAmadeus/49-expression-formatter
49 expression formatter
2 parents dac1bcd + 28904e8 commit 5416fff

File tree

84 files changed

+643
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+643
-66
lines changed

package.json

+16
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,22 @@
280280
],
281281
"description": "Add space after comma?"
282282
},
283+
"AblFormatter.expressionFormatting": {
284+
"order": 1800,
285+
"type": "boolean",
286+
"default": "true",
287+
"description": "Enable EXPRESSION formatting"
288+
},
289+
"AblFormatter.expressionFormattingLogicalLocation": {
290+
"order": 1801,
291+
"type": "string",
292+
"default": "Same",
293+
"enum": [
294+
"New",
295+
"Same"
296+
],
297+
"description": "Should logical operators be on a new line or the same line as the expression?"
298+
},
283299
"AblFormatter.showTreeInfoOnHover": {
284300
"order": 10100,
285301
"type": "boolean",

resources/functionalTests/assign/10sameLine-noRightAlign-newAlignedEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910

resources/functionalTests/assign/10sameLine-noRightAlign-newAlignedEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 3333
910
.

resources/functionalTests/assign/11sameLine-noRightAlign-newEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910

resources/functionalTests/assign/11sameLine-noRightAlign-newEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 3333
910
.

resources/functionalTests/assign/12sameLine-noRightAlign-sameEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2
910
number2 = 3333 .

resources/functionalTests/assign/12sameLine-noRightAlign-sameEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 3333.

resources/functionalTests/assign/13sameLine-RightAlign-newAlignedEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 33333 .

resources/functionalTests/assign/13sameLine-RightAlign-newAlignedEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 33333
910
.

resources/functionalTests/assign/14sameLine-RightAlign-sameEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910

resources/functionalTests/assign/14sameLine-RightAlign-sameEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2 number2 = 33333.

resources/functionalTests/assign/15assign-noError/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/15assign-noError/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/16assign-When/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/16assign-When/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/17assign-When-noError/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/17assign-When-noError/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/17assign-When-noError2 copy/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89

910
ASSIGN

resources/functionalTests/assign/17assign-When-noError2 copy/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "Same",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89

910
ASSIGN number2 = 2 number11 = 2 when number3 = 2 NO-ERROR

resources/functionalTests/assign/17assign-When-noError2/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/17assign-When-noError2/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number2 = 2

resources/functionalTests/assign/1formattingFalse/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/1formattingFalse/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/2inFunction/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"AblFormatter.functionParameterFormatting": false,
55
"AblFormatter.assignFormattingAssignLocation": "New",
66
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
7-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
7+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
8+
"AblFormatter.expressionFormatting": false}*/
89

910
FUNCTION sumNumbers RETURNS INTEGER (number3 AS INTEGER, number4 AS INTEGER):
1011
ASSIGN

resources/functionalTests/assign/2inFunction/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"AblFormatter.functionParameterFormatting": false,
55
"AblFormatter.assignFormattingAssignLocation": "New",
66
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
7-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
7+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
8+
"AblFormatter.expressionFormatting": false}*/
89

910
FUNCTION sumNumbers RETURNS INTEGER (number3 AS INTEGER, number4 AS INTEGER):
1011
ASSIGN

resources/functionalTests/assign/3inProcedure/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
PROCEDURE sumNumbers:
910
ASSIGN

resources/functionalTests/assign/3inProcedure/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
PROCEDURE sumNumbers:
910
ASSIGN

resources/functionalTests/assign/4newLine-noRightAlign-newAlignedEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2
910
number2 = 33333

resources/functionalTests/assign/4newLine-noRightAlign-newAlignedEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/5newLine-noRightAlign-newEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/5newLine-noRightAlign-newEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/6newLine-noRightAlign-sameEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/6newLine-noRightAlign-sameEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "No",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/7newLine-RightAlign-newAlignedEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/7newLine-RightAlign-newAlignedEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New aligned"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New aligned",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/8newLine-RightAlign-newEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"AblFormatter.assignFormatting": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN number11 = 2
910
number2 = 3333 .

resources/functionalTests/assign/8newLine-RightAlign-newEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"AblFormatter.assignFormatting": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "New"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "New",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number11 = 2

resources/functionalTests/assign/9newLine-RightAlign-sameEndDot/input.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number1 = 2

resources/functionalTests/assign/9newLine-RightAlign-sameEndDot/target.p

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"abl.completion.upperCase": true,
44
"AblFormatter.assignFormattingAssignLocation": "New",
55
"AblFormatter.assignFormattingAlignRightExpression": "Yes",
6-
"AblFormatter.assignFormattingEndDotLocation": "Same"}*/
6+
"AblFormatter.assignFormattingEndDotLocation": "Same",
7+
"AblFormatter.expressionFormatting": false}*/
78

89
ASSIGN
910
number1 = 2

0 commit comments

Comments
 (0)