Describe the Feature
Sorts the access attributes, to a wanted order
(Optional) Sample of input
class Main {
overload inline macro static public function main() {
doSomething("");
}
}
(Optional) Sample of desired output
class Main {
public static macro inline overload function main() {
doSomething("");
}
}
Possible hxformat config format
{
"restructure": {
"accessOrder": ["public", "static", "macro", "inline", "overload"]
}
}
Describe the Feature
Sorts the access attributes, to a wanted order
(Optional) Sample of input
(Optional) Sample of desired output
Possible hxformat config format
{ "restructure": { "accessOrder": ["public", "static", "macro", "inline", "overload"] } }