Commit 170de5ecae

Henry Wu <hywu925@gmail.com>
2019-10-29 01:07:55
generated docs: log trace instead of error
When the error occurred for getValueText it could potentially omit useful documentation since the page stops rendering.
1 parent cb5a5eb
Changed files (1)
lib
std
special
docs
lib/std/special/docs/main.js
@@ -543,7 +543,7 @@
                     return value + "";
                 }
             default:
-                throw new Error("TODO implement getValueText for this type");
+                console.trace("TODO implement getValueText for this type:", zigAnalysis.typeKinds[typeObj.kind]);
         }
     }