view runtime/internal/invariant.d @ 865:5e5873d847f6

Add missing overrides for toConstExp to dmd2/expression.h. Fixes #156.
author Christian Kamm <kamm incasoftware de>
date Sat, 20 Dec 2008 09:15:31 +0100
parents d30c40f1128d
children d7ec997de427
line wrap: on
line source


/*
 * Placed into the Public Domain
 * written by Walter Bright
 * www.digitalmars.com
 */

extern(C) 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);
}