mirror of https://gitlab.com/basile.b/dexed.git
update dparse and dastworx
This commit is contained in:
parent
933d3a352f
commit
7784e066c9
|
@ -396,6 +396,6 @@ T parseAndVisit(T : ASTVisitor)(const(char)[] source)
|
||||||
* By default libdparse outputs errors and warnings to the standard streams.
|
* By default libdparse outputs errors and warnings to the standard streams.
|
||||||
* This function prevents that.
|
* This function prevents that.
|
||||||
*/
|
*/
|
||||||
void ignoreErrors(string, size_t, size_t, string, bool)
|
void ignoreErrors(string, size_t, size_t, string, bool) @system
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
|
@ -57,9 +57,9 @@ struct Launcher
|
||||||
{
|
{
|
||||||
mixin(logCall);
|
mixin(logCall);
|
||||||
|
|
||||||
Appender!(AstErrors) errors;
|
static Appender!(AstErrors) errors;
|
||||||
|
|
||||||
void handleErrors(string fname, size_t line, size_t col, string message, bool err)
|
static void handleErrors(string fname, size_t line, size_t col, string message, bool err)
|
||||||
{
|
{
|
||||||
errors ~= construct!(AstError)(cast(ErrorType) err, message, line, col);
|
errors ~= construct!(AstError)(cast(ErrorType) err, message, line, col);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 95444a966923a24098c31464e09a7096208da155
|
Subproject commit 7113ccdb02097eb8e1ba65cde3e47ed21b70cb67
|
Loading…
Reference in New Issue