view dmd/ParseStatementFlags.d @ 80:d0f297f8650b

added probably needed dmd patch to the 2.035 branch
author Trass3r
date Mon, 30 Aug 2010 12:16:44 +0200
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.ParseStatementFlags;

enum ParseStatementFlags
{
    PSsemi = 1,		// empty ';' statements are allowed
    PSscope = 2,	// start a new scope
    PScurly = 4,	// { } statement is required
    PScurlyscope = 8,	// { } starts a new scope
}