mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
25 lines
441 B
D
25 lines
441 B
D
|
|
/*
|
|
* Placed into the Public Domain
|
|
* written by Walter Bright
|
|
* www.digitalmars.com
|
|
*/
|
|
|
|
void _d_invariant(Object o)
|
|
{ ClassInfo c;
|
|
|
|
//printf("__d_invariant(%p)\n", o);
|
|
|
|
// BUG: needs to be filename/line of caller, not library routine
|
|
assert(o !is null); // just do null check, not invariant check
|
|
|
|
c = o.classinfo;
|
|
do
|
|
{
|
|
if (c.classInvariant)
|
|
{
|
|
(*c.classInvariant)(o);
|
|
}
|
|
c = c.base;
|
|
} while (c);
|
|
}
|