view dmd/TRUST.d @ 155:a43c65469219

+ Statement.interpret() + ContinueStatement.interpret() + DoStatement.interpret()
author trass3r
date Wed, 15 Sep 2010 17:31:22 +0200
parents 60bb0fe4563e
children
line wrap: on
line source

module dmd.TRUST;

enum TRUST
{
    TRUSTdefault = 0,
    TRUSTsystem = 1,	// @system (same as TRUSTdefault)
    TRUSTtrusted = 2,	// @trusted
    TRUSTsafe = 3,	// @safe
};

import dmd.EnumUtils;
mixin(BringToCurrentScope!(TRUST));