Function
assertLessThan
(a, b, msg, stackCrawlMark)
Source from the content-addressed store, hash-verified
| 2729 | } |
| 2730 | Debug.assertEqual = assertEqual; |
| 2731 | function assertLessThan(a, b, msg, stackCrawlMark) { |
| 2732 | if (a >= b) { |
| 2733 | fail("Expected ".concat(a, " < ").concat(b, ". ").concat(msg || ""), stackCrawlMark || assertLessThan); |
| 2734 | } |
| 2735 | } |
| 2736 | Debug.assertLessThan = assertLessThan; |
| 2737 | function assertLessThanOrEqual(a, b, stackCrawlMark) { |
| 2738 | if (a > b) { |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…