From 60678f5bafdf22e274229f983d02069e13996426 Mon Sep 17 00:00:00 2001 From: Loris Cro Date: Sun, 11 Sep 2022 23:45:18 +0200 Subject: [PATCH] autodoc: fix regression in frontend rendering of values --- lib/docs/main.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/docs/main.js b/lib/docs/main.js index a4043fb742..18886f37fb 100644 --- a/lib/docs/main.js +++ b/lib/docs/main.js @@ -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); }