Fix #349 - Wrong indentation of access modifier after break of long line
This commit is contained in:
parent
18eea577f8
commit
942e44a120
|
@ -482,6 +482,8 @@ private:
|
||||||
{
|
{
|
||||||
if (currentIs(tok!";"))
|
if (currentIs(tok!";"))
|
||||||
{
|
{
|
||||||
|
indents.popWrapIndents();
|
||||||
|
indentLevel = indents.indentLevel;
|
||||||
writeToken();
|
writeToken();
|
||||||
if (index >= tokens.length)
|
if (index >= tokens.length)
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
import super_long_import_module_name : withSuperLongSymbolNames,
|
||||||
|
andAlsoLotsOfThem;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void foo();
|
|
@ -0,0 +1,4 @@
|
||||||
|
import super_long_import_module_name : withSuperLongSymbolNames, andAlsoLotsOfThem;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void foo();
|
|
@ -0,0 +1,5 @@
|
||||||
|
import super_long_import_module_name : withSuperLongSymbolNames,
|
||||||
|
andAlsoLotsOfThem;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void foo();
|
Loading…
Reference in New Issue