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 {
458
458
///
459
459
/// To balance these, we omit the indentation when an adjacent string
460
460
/// expression is in a context where it's unlikely to be confusing.
461
- bool get indentStrings3_7 {
461
+ bool get indentStrings3Dot7 {
462
462
return switch (parent) {
463
463
ArgumentList (: var arguments) => _hasOtherStringArgument (arguments),
464
464
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ final class AstNodeVisitor extends ThrowingAstVisitor<void> with PieceFactory {
143
143
144
144
@override
145
145
void visitAdjacentStrings (AdjacentStrings node) {
146
- var indent = style.is3Dot7 ? node.indentStrings3_7 : node.indentStrings;
146
+ var indent = style.is3Dot7 ? node.indentStrings3Dot7 : node.indentStrings;
147
147
var piece = InfixPiece (
148
148
node.strings.map (nodePiece).toList (),
149
149
indent: indent ? Indent .infix : Indent .none,
You can’t perform that action at this time.
0 commit comments