* Asserts if called. Used to ensure that a specific codepath is * not taken e.g. that an error event isn't fired. * * @param {string} [description] - Description of the condition being tested.
(description)
| 2620 | * @param {string} [description] - Description of the condition being tested. |
| 2621 | */ |
| 2622 | function assert_unreached(description) { |
| 2623 | assert(false, "assert_unreached", description, |
| 2624 | "Reached unreachable code"); |
| 2625 | } |
| 2626 | expose_assert(assert_unreached, "assert_unreached"); |
| 2627 | |
| 2628 | /** |
no test coverage detected