mirror of https://gitlab.com/basile.b/dexed.git
halstead, show full func sig
This commit is contained in:
parent
b95eb67b8f
commit
5c4152c99b
|
@ -2,6 +2,7 @@
|
|||
|
||||
## Enhancement
|
||||
|
||||
- Halstead metrics: show full function signatures.
|
||||
- DUB projects: added support for the _syntax_ build type. (#83)
|
||||
|
||||
# v3.9.11
|
||||
|
|
|
@ -501,3 +501,20 @@ unittest
|
|||
assert(fpcString.length == test.length);
|
||||
assert(fpcString.data[0..fpcString.length] == test);
|
||||
}
|
||||
|
||||
string funcDeclText(const FunctionDeclaration fd)
|
||||
{
|
||||
import dparse.formatter : Formatter;
|
||||
|
||||
alias Fmt = Formatter!(Array!char*);
|
||||
__gshared Array!char app;
|
||||
__gshared Fmt fmt;
|
||||
|
||||
if (!fmt)
|
||||
fmt = construct!Fmt(&app);
|
||||
|
||||
app.length = 0;
|
||||
app.put(cast() fd.name.text);
|
||||
fmt.format(fd.parameters);
|
||||
return app[].idup;
|
||||
}
|
||||
|
|
|
@ -222,7 +222,7 @@ private final class HalsteadMetric: ASTVisitor
|
|||
if (!decl.functionBody)
|
||||
return;
|
||||
decl.accept(this);
|
||||
endFunction(decl.name.text, decl.name.line);
|
||||
endFunction(patchPascalString(funcDeclText(decl)), decl.name.line);
|
||||
}
|
||||
|
||||
void visitFunction(T)(const(T) decl)
|
||||
|
|
|
@ -110,8 +110,6 @@ static assert (!MustAddGcRange!(SymbolListBuilder!(ListFmt.Pas)));
|
|||
JSONValue* jarray;
|
||||
}
|
||||
|
||||
Array!char funcNameApp;
|
||||
Formatter!(Array!char*) fmtVisitor;
|
||||
uint utc;
|
||||
|
||||
this(Appender!(AstErrors) errors, bool deep)
|
||||
|
@ -126,14 +124,11 @@ static assert (!MustAddGcRange!(SymbolListBuilder!(ListFmt.Pas)));
|
|||
json = parseJSON("[]");
|
||||
jarray = &json;
|
||||
}
|
||||
fmtVisitor = construct!(typeof(fmtVisitor))(&funcNameApp);
|
||||
addAstErrors(errors.data);
|
||||
}
|
||||
|
||||
~this()
|
||||
{
|
||||
destruct(funcNameApp);
|
||||
destruct(fmtVisitor);
|
||||
static if (Fmt == ListFmt.Pas)
|
||||
{
|
||||
destruct(pasStream);
|
||||
|
@ -199,14 +194,7 @@ static assert (!MustAddGcRange!(SymbolListBuilder!(ListFmt.Pas)));
|
|||
pasStream.put(format("col=%d\r", dt.name.column));
|
||||
static if (is(DT == FunctionDeclaration))
|
||||
{
|
||||
if (dt.parameters && dt.parameters.parameters &&
|
||||
dt.parameters.parameters.length)
|
||||
{
|
||||
funcNameApp.length = 0;
|
||||
fmtVisitor.format(dt.parameters);
|
||||
pasStream.put(format("name='%s%s'\r", dt.name.text, patchPascalString(funcNameApp[])));
|
||||
}
|
||||
else pasStream.put(format("name='%s'\r", dt.name.text));
|
||||
pasStream.put(format("name='%s'\r", funcDeclText(dt).patchPascalString()));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue