comparison dmd/ParseStatementFlags.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.ParseStatementFlags;
2
3 enum ParseStatementFlags
4 {
5 PSsemi = 1, // empty ';' statements are allowed
6 PSscope = 2, // start a new scope
7 PScurly = 4, // { } statement is required
8 PScurlyscope = 8, // { } starts a new scope
9 }