Skip to content

Commit

Permalink
ml_basic: remove <dynamic> from selectFarthestJoined
Browse files Browse the repository at this point in the history
  • Loading branch information
erf committed Dec 6, 2023
1 parent f2ab758 commit 605c4dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/ast/value/string/ml_basic.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class TomlMultilineBasicString extends TomlMultilineString {
tomlNewline &
ChoiceParser(
[tomlWhitespaceChar, tomlNewline],
failureJoiner: selectFarthestJoined<dynamic>,
failureJoiner: selectFarthestJoined,
).star())
.map((_) => '');

Expand All @@ -100,7 +100,7 @@ class TomlMultilineBasicString extends TomlMultilineString {
var buffer = StringBuffer();
var unescapedOrNewline = ChoiceParser(
[unescapedParser, tomlNewline],
failureJoiner: selectFarthestJoined<dynamic>,
failureJoiner: selectFarthestJoined,
);
var quotes = 0;
var iterator = value.runes.iterator;
Expand Down

0 comments on commit 605c4dc

Please sign in to comment.