Update dparse to fix possible infinite loop and adapt to ParameterAttribute
This commit is contained in:
parent
44e0092b88
commit
7494c5fb14
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"StdLoggerDisableWarning"
|
||||
],
|
||||
"dependencies" : {
|
||||
"libdparse" : "~>0.9.2",
|
||||
"libdparse" : "~>0.9.3",
|
||||
"dsymbol" : "~>0.4.1",
|
||||
"inifiled" : "~>1.3.1",
|
||||
"emsi_containers" : "~>0.8.0-alpha.7",
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d9490f114cc1d0d2ea74662da61ebc2714c0b82b
|
||||
Subproject commit f04bd575fdcabf3f7934a63a0819e37d1ef4a9e3
|
|
@ -41,8 +41,8 @@ final class AutoRefAssignmentCheck : BaseAnalyzer
|
|||
{
|
||||
import std.algorithm.searching : canFind;
|
||||
|
||||
immutable bool isAuto = param.parameterAttributes.canFind(cast(ubyte) tok!"auto");
|
||||
immutable bool isRef = param.parameterAttributes.canFind(cast(ubyte) tok!"ref");
|
||||
immutable bool isAuto = param.parameterAttributes.canFind!(a => a.idType == cast(ubyte) tok!"auto");
|
||||
immutable bool isRef = param.parameterAttributes.canFind!(a => a.idType == cast(ubyte) tok!"ref");
|
||||
if (!isAuto || !isRef)
|
||||
return;
|
||||
addSymbol(param.name.text);
|
||||
|
|
|
@ -324,7 +324,7 @@ final class UnusedVariableCheck : BaseAnalyzer
|
|||
if (parameter.name != tok!"")
|
||||
{
|
||||
immutable bool isRef = !parameter.parameterAttributes
|
||||
.filter!(a => a.among(tok!"ref", tok!"out")).empty;
|
||||
.filter!(a => a.idType.among(tok!"ref", tok!"out")).empty;
|
||||
immutable bool isPtr = parameter.type && !parameter.type
|
||||
.typeSuffixes.filter!(a => a.star != tok!"").empty;
|
||||
|
||||
|
|
|
@ -675,15 +675,21 @@ class XMLPrinter : ASTVisitor
|
|||
output.writeln("</orOrExpression>");
|
||||
}
|
||||
|
||||
override void visit(const ParameterAttribute pa)
|
||||
{
|
||||
output.writeln("<parameterAttribute>");
|
||||
if (pa.atAttribute)
|
||||
visit(pa.atAttribute);
|
||||
else
|
||||
writeln(str(pa.idType));
|
||||
output.writeln("</parameterAttribute>");
|
||||
}
|
||||
|
||||
override void visit(const Parameter param)
|
||||
{
|
||||
output.writeln("<parameter>");
|
||||
if (param.name.type == tok!"identifier")
|
||||
writeName(param.name.text);
|
||||
foreach (attribute; param.parameterAttributes)
|
||||
{
|
||||
output.writeln("<parameterAttribute>", str(attribute), "</parameterAttribute>");
|
||||
}
|
||||
param.accept(this);
|
||||
if (param.vararg)
|
||||
output.writeln("<vararg/>");
|
||||
|
|
Loading…
Reference in New Issue