File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ extension AdjacentStringsExtensions on AdjacentStrings {
458458 ///
459459 /// To balance these, we omit the indentation when an adjacent string
460460 /// expression is in a context where it's unlikely to be confusing.
461- bool get indentStrings3_7 {
461+ bool get indentStrings3Dot7 {
462462 return switch (parent) {
463463 ArgumentList (: var arguments) => _hasOtherStringArgument (arguments),
464464
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ final class AstNodeVisitor extends ThrowingAstVisitor<void> with PieceFactory {
143143
144144 @override
145145 void visitAdjacentStrings (AdjacentStrings node) {
146- var indent = style.is3Dot7 ? node.indentStrings3_7 : node.indentStrings;
146+ var indent = style.is3Dot7 ? node.indentStrings3Dot7 : node.indentStrings;
147147 var piece = InfixPiece (
148148 node.strings.map (nodePiece).toList (),
149149 indent: indent ? Indent .infix : Indent .none,
You can’t perform that action at this time.
0 commit comments