mirror of https://github.com/adamdruppe/arsd.git
Fix filtering of first token in `IniFilteredParser`
This commit is contained in:
parent
88b50feef1
commit
723fa5be40
11
ini.d
11
ini.d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue