BalticAmadeus / AblFormatter

Code formatter for Progress OpenEdge (ABL)
Apache License 2.0
6 stars 0 forks source link

Add error handling cases #154

Closed SSaulenas closed 2 months ago

SSaulenas commented 2 months ago

Add error handling cases for formatters to prevent them from altering code in a way that disrupts functionality.

Example, this:

oObject:Length = new OpenEdge.Core.String(pcMessage):Size

Becomes this in assign statement:

oObject:Length = new OpenEdge.Core.String(pcMessage) :Size
gustason commented 2 months ago

The expression formatter (in #140) fixes this.