Fix filtering of first token in `IniFilteredParser`

This commit is contained in:
Elias Batek 2025-02-13 02:55:22 +01:00
parent 88b50feef1
commit 723fa5be40
1 changed files with 11 additions and 0 deletions

11
ini.d
View File

@ -977,6 +977,7 @@ public @safe pure nothrow:
///
public this(IniParser!(dialect, string) parser) {
_parser = parser;
_parser.skipIrrelevant(true);
}
///
@ -1181,6 +1182,16 @@ s2key2 = value no.4
assert(parser.empty);
}
@safe @nogc unittest {
static immutable rawIni = "; only a comment";
auto regularParser = makeIniParser(rawIni);
auto filteredParser = makeIniFilteredParser(rawIni);
assert(!regularParser.empty);
assert(filteredParser.empty);
}
@safe @nogc unittest {
static immutable rawIni = "#actually_a = comment\r\n\t#another one\r\n\t\t ; oh, and a third one";
enum dialect = (Dialect.hashLineComments | Dialect.lineComments);