mirror of
https://github.com/nodejs/node.git
synced 2025-05-22 00:37:09 +00:00

* Tree-factor location of some *.py files for easy demarcation of areas to exclude. PR-URL: https://github.com/nodejs/node/pull/25614 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
10 lines
384 B
Python
10 lines
384 B
Python
# flake8: noqa
|
|
|
|
macro DCHECK(x) = do { if (!(x)) (process._rawDebug("DCHECK: x == true"), process.abort()) } while (0);
|
|
macro DCHECK_EQ(a, b) = DCHECK((a) === (b));
|
|
macro DCHECK_GE(a, b) = DCHECK((a) >= (b));
|
|
macro DCHECK_GT(a, b) = DCHECK((a) > (b));
|
|
macro DCHECK_LE(a, b) = DCHECK((a) <= (b));
|
|
macro DCHECK_LT(a, b) = DCHECK((a) < (b));
|
|
macro DCHECK_NE(a, b) = DCHECK((a) !== (b));
|