Use libdparse to check for named arg
Remove custom named arg parser
This commit is contained in:
parent
9f377100f0
commit
2ea6c43a66
|
@ -461,33 +461,24 @@ final class FormatVisitor : ASTVisitor
|
|||
return;
|
||||
}
|
||||
|
||||
/+
|
||||
Items are function arguments: f(<item>, <item>);
|
||||
Iterate them and check if they are named arguments: tok!":" belongs to a
|
||||
named argument if it is preceeded by one tok!"identifier" (+ any number
|
||||
of comments):
|
||||
+/
|
||||
foreach (item; functionCall.arguments.namedArgumentList.items)
|
||||
{
|
||||
// Set to true after first tok!"identifier".
|
||||
auto foundIdentifier = false;
|
||||
|
||||
foreach (t; item.tokens)
|
||||
// Do nothing if not a named argument.
|
||||
if (item.name == tok!"")
|
||||
{
|
||||
if (t.type == tok!"identifier" && !foundIdentifier)
|
||||
{
|
||||
foundIdentifier = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (t.type == tok!":" && foundIdentifier)
|
||||
// Find first colon if named argument.
|
||||
foreach (t; item.tokens)
|
||||
{
|
||||
if (t.type == tok!":")
|
||||
{
|
||||
astInformation.namedArgumentColonLocations ~= t.index;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
functionCall.accept(this);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue