Haxe code sample
functionfoo()
if (true)
{
finali=1;
|
}Note: "|" is the caret position.
Start typing at the caret position, the code is auto-indented at the same level as function.
If final i is replaced with var i then indentation is correct. I guess it's related to the final keyword used in this context.
Haxe code sample
Note: "|" is the caret position.
Start typing at the caret position, the code is auto-indented at the same level as
function.If
final iis replaced withvar ithen indentation is correct. I guess it's related to thefinalkeyword used in this context.