* The Property Descriptor of a lazily-computed `stack` property.
| 7 | * The Property Descriptor of a lazily-computed `stack` property. |
| 8 | */ |
| 9 | interface LazyStack { |
| 10 | configurable: true; |
| 11 | |
| 12 | /** |
| 13 | * Lazily computes the error's stack trace. |
| 14 | */ |
| 15 | get(): string | undefined; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Is the property lazily computed? |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…