autodoc: fix regression in frontend rendering of values

This commit is contained in:
Loris Cro 2022-09-11 23:45:18 +02:00
parent 2a96f80d03
commit 60678f5baf

View File

@ -478,11 +478,13 @@ var zigAnalysis;
}
if (lastIsDecl && last.kind === "const") {
let typeObj = getType(resolveValue(last.value).expr.type);
if (typeObj && typeObj.kind === typeKinds.Fn) {
return renderFn(last);
const value = resolveValue(last.value);
if ("type" in value.expr) {
let typeObj = getType(value.expr.type);
if (typeObj.kind === typeKinds.Fn) {
return renderFn(last);
}
}
return renderValue(last);
}