RasmusTidselbak / al-var-helper

6 stars 6 forks source link

Sort Variables is not sorting BigText correct #20

Open mfalk118 opened 5 years ago

mfalk118 commented 5 years ago

Variables like this: var DataStream: InStream; PlainTextVisible: Boolean; BodyText: Text; BodyTextBig: BigText;

Is sorted to this: DataStream: InStream; BodyTextBig: BigText; PlainTextVisible: Boolean; BodyText: Text;

Gives warning: Variable declarations should be ordered by type. Variables should be sorted like this: Record, Report, Codeunit, XmlPort, Page, Query, Notification, BigText, DateFormula, RecordId, RecordRef, FieldRef, and FilterPageBuilder. The rest of the variables are not sorted.

So the BigText must come up in front of the InStream.

But great Extensions, really useful :-)