Skip to content

Commit

Permalink
Don't report ")" as error. (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsroka authored Jul 24, 2024
1 parent b84a425 commit a25aa8e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/src/render_object.dart
Original file line number Diff line number Diff line change
Expand Up @@ -530,15 +530,15 @@ class RenderSuperSliverList extends RenderSliverMultiBoxAdaptor

_log.fine(
"Laying out $_logIdentifier "
"("
"anchored at end: $anchoredAtEnd, "
"initial extent: ${initialExtent.format()}, "
"scroll offset: ${constraints.scrollOffset.format()}, "
"overlap: ${constraints.overlap}, "
"remaining paint extent: ${constraints.remainingPaintExtent.format()}, "
"cache: ${constraints.cacheOrigin.format()} - "
"${constraints.remainingCacheExtent.format()}, "
"preceding: ${constraints.precedingScrollExtent.format()}",
"("
"anchored at end: $anchoredAtEnd, "
"initial extent: ${initialExtent.format()}, "
"scroll offset: ${constraints.scrollOffset.format()}, "
"overlap: ${constraints.overlap}, "
"remaining paint extent: ${constraints.remainingPaintExtent.format()}, "
"cache: ${constraints.cacheOrigin.format()} - "
"${constraints.remainingCacheExtent.format()}, "
"preceding: ${constraints.precedingScrollExtent.format()}"
")",
);

Expand Down

0 comments on commit a25aa8e

Please sign in to comment.