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 files changed, 1 insertions(+), 1 deletions(-)
lib
lib/std/special/docs/main.js+1-1
| ... | ... | @@ -543,7 +543,7 @@ |
| 543 | 543 | return value + ""; |
| 544 | 544 | } |
| 545 | 545 | default: |
| 546 | | throw new Error("TODO implement getValueText for this type"); |
| 546 | console.trace("TODO implement getValueText for this type:", zigAnalysis.typeKinds[typeObj.kind]); |
| 547 | 547 | } |
| 548 | 548 | } |
| 549 | 549 | |