* Asserts that a class property document has: * - At least one code https://jsdoc.app/tags-example | @example tag with * a code snippet that executes successfully.
( property: DocNodeWithJsDoc<ClassPropertyDef>, )
| 313 | * a code snippet that executes successfully. |
| 314 | */ |
| 315 | function assertClassPropertyDocs( |
| 316 | property: DocNodeWithJsDoc<ClassPropertyDef>, |
| 317 | ) { |
| 318 | assertHasExampleTag(property); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * Checks a constructor document for: |
no test coverage detected