view dmd/MOD.d @ 115:6caaf0256da1

+ interpretation of (non-assign) binary expressions + BinExp.isunsigned + EqualExp.isBit
author Trass3r
date Thu, 02 Sep 2010 01:29:29 +0200
parents acd69f84627e
children af1bebfd96a4
line wrap: on
line source

module dmd.MOD;

public enum MOD
{
	MODundefined = 0,
	MODconst = 1,	// type is const
	MODshared = 2,	// type is shared
	MODinvariant = 4,	// type is immutable
	MODimmutable = 4,	// type is immutable
}

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