as3hx
as3hx copied to clipboard
Blocks do not adhere to bracesOnNewline flag
trafficstars
- Set bracesOnNewline flag to true in the config file.
- Run as3hx on the test folder.
- The outputted code does not seem to have the braces on the new line.
Look at Loops.hx for example:
for (i in 0..._numButtons){
var btn : ArcButton = new ArcButton();
btn.id = i;
if (btn.name != null) {i++;continue;
};
trace(i);
}