(a: bigint, b: bigint)
| 95 | } |
| 96 | |
| 97 | function compareBigInt(a: bigint, b: bigint): number { |
| 98 | if (a < b) return -1; |
| 99 | if (a > b) return 1; |
| 100 | return 0; |
| 101 | } |
| 102 | |
| 103 | function isStructuredDrawlistRecordCode(code: number): boolean { |
| 104 | return code === DEBUG_CODE_DRAWLIST_VALIDATE || code === DEBUG_CODE_DRAWLIST_EXECUTE; |