diff --git a/src/dfmt/ast_info.d b/src/dfmt/ast_info.d index e8157b9..c5bd3cc 100644 --- a/src/dfmt/ast_info.d +++ b/src/dfmt/ast_info.d @@ -45,6 +45,7 @@ struct ASTInformation sort(conditionalWithElseLocations); sort(conditionalStatementLocations); sort(arrayStartLocations); + sort(assocArrayStartLocations); sort(contractLocations); sort(constraintLocations); sort(constructorDestructorLocations); @@ -95,6 +96,9 @@ struct ASTInformation /// Locations of start locations of array initializers size_t[] arrayStartLocations; + /// Locations of start locations of associative array initializers + size_t[] assocArrayStartLocations; + /// Locations of "in" and "out" tokens that begin contracts size_t[] contractLocations; @@ -136,6 +140,19 @@ final class FormatVisitor : ASTVisitor arrayInitializer.accept(this); } + override void visit(const ArrayLiteral arrayLiteral) + { + astInformation.arrayStartLocations ~= arrayLiteral.tokens[0].index; + arrayLiteral.accept(this); + } + + override void visit(const AssocArrayLiteral assocArrayLiteral) + { + astInformation.arrayStartLocations ~= assocArrayLiteral.tokens[0].index; + astInformation.assocArrayStartLocations ~= assocArrayLiteral.tokens[0].index; + assocArrayLiteral.accept(this); + } + override void visit (const SharedStaticConstructor sharedStaticConstructor) { astInformation.sharedStaticConstructorDestructorLocations ~= sharedStaticConstructor.location;