Skip to content

Commit f9e18fa

Browse files
committed
Fix missed rename.
1 parent 4db86f0 commit f9e18fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/src/ast_extensions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

lib/src/front_end/ast_node_visitor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)