module watt.toml.util
Code Map
module watt.toml.util;
//! Thrown on input error.
class TomlException : rt.Exception
{
public:
this(msg: string) { }
}
fn match(src: source.SimpleSource, c: dchar) { }
//! If p.src is at c, eat it and return true. Otherwise, return false.
fn matchIf(src: source.SimpleSource, c: dchar) bool { }
fn atTripleString(src: source.SimpleSource) bool { }
fn skipIfNewline(src: source.SimpleSource) { }
fn parseMultilineString(src: source.SimpleSource) string { }
fn parseString(src: source.SimpleSource) string { }
fn escapeString(unescaped: string, multiline: bool) string { }
class TomlException : rt.Exception
Thrown on input error.
fn matchIf(src: source.SimpleSource, c: dchar) bool
If p.src
is at c
, eat it and return true. Otherwise, return false.