mirror of https://github.com/adamdruppe/arsd.git
Add further doc comments to `arsd.ini`
This commit is contained in:
parent
7d13f7cf22
commit
5d3a57ea1a
23
ini.d
23
ini.d
|
@ -34,30 +34,45 @@ private bool hasFeature(ulong dialect, ulong feature) @safe pure nothrow @nogc {
|
|||
return ((dialect & feature) > 0);
|
||||
}
|
||||
|
||||
///
|
||||
/++
|
||||
Type of a token (as output by the parser)
|
||||
+/
|
||||
public enum IniTokenType {
|
||||
/// indicates an error
|
||||
invalid = 0,
|
||||
|
||||
/// insignificant whitespace
|
||||
whitespace,
|
||||
/// section header opening bracket
|
||||
bracketOpen,
|
||||
/// section header closing bracket
|
||||
bracketClose,
|
||||
/// key/value separator, e.g. '='
|
||||
keyValueSeparator,
|
||||
/// line break, i.e. LF, CRLF or CR
|
||||
lineBreak,
|
||||
|
||||
/// text comment
|
||||
comment,
|
||||
|
||||
/// item key data
|
||||
key,
|
||||
/// item value data
|
||||
value,
|
||||
/// section name data
|
||||
sectionHeader,
|
||||
}
|
||||
|
||||
///
|
||||
/++
|
||||
Token of INI data (as output by the parser)
|
||||
+/
|
||||
struct IniToken(string) if (isCompatibleString!string) {
|
||||
|
||||
///
|
||||
IniTokenType type;
|
||||
|
||||
///
|
||||
/++
|
||||
Content
|
||||
+/
|
||||
string data;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue