digitalmars.D.learn - Question
- Bine Pucnik (1/1) Oct 06 2007 What is NoScopeNonEmptyStatement ?
- 0ffh (4/5) Oct 06 2007 Either a NonEmptyStatement or a BlockStatment, it seems. =)
- Bine Pucnik (12/19) Oct 06 2007 Well, I was reading D language specifications for statements, and it say...
- Bine Pucnik (12/19) Oct 06 2007 Well, I was reading D language specifications for statements, and it say...
- Frank Benoit (3/4) Oct 06 2007 They are defined in the top of the page.
- Stewart Gordon (11/12) Oct 13 2007 Basically, a non-empty statement that doesn't introduce a new scope even...
- Bine Pucnik (3/20) Oct 14 2007 I see ! Thanks for the answer !
Bine Pucnik wrote:What is NoScopeNonEmptyStatement ?Either a NonEmptyStatement or a BlockStatment, it seems. =) What do you mean by your question? Regards, Frank
Oct 06 2007
0ffh Wrote:Bine Pucnik wrote:Well, I was reading D language specifications for statements, and it says that : ForStatement: for (Initialize Test; Increment) ScopeStatement Initialize: ; NoScopeNonEmptyStatement . . . I don't know, what kind which statements are NoScopeNonEmptyStatement. Regards,BineWhat is NoScopeNonEmptyStatement ?Either a NonEmptyStatement or a BlockStatment, it seems. =) What do you mean by your question? Regards, Frank
Oct 06 2007
0ffh Wrote:Bine Pucnik wrote:Well, I was reading D language specifications for statements, and it says that : ForStatement: for (Initialize Test; Increment) ScopeStatement Initialize: ; NoScopeNonEmptyStatement . . . I don't know, what kind which statements are NoScopeNonEmptyStatement. Regards,BineWhat is NoScopeNonEmptyStatement ?Either a NonEmptyStatement or a BlockStatment, it seems. =) What do you mean by your question? Regards, Frank
Oct 06 2007
Bine Pucnik schrieb:What is NoScopeNonEmptyStatement ?They are defined in the top of the page. http://www.digitalmars.com/d/statement.html
Oct 06 2007
"Bine Pucnik" <albin.pucnik guest.arnes.si> wrote in message news:fe83oj$i1v$1 digitalmars.com...What is NoScopeNonEmptyStatement ?Basically, a non-empty statement that doesn't introduce a new scope even if { ... } is used. They are used mainly in conditional compilation statements (debug, version and static if). The point is to enable conditional compilation to work on declarations. Stewart. -- My e-mail address is valid but not my primary mailbox. Please keep replies on the 'group where everybody may benefit.
Oct 13 2007
Stewart Gordon Wrote:"Bine Pucnik" <albin.pucnik guest.arnes.si> wrote in message news:fe83oj$i1v$1 digitalmars.com...I see ! Thanks for the answer ! BineWhat is NoScopeNonEmptyStatement ?Basically, a non-empty statement that doesn't introduce a new scope even if { ... } is used. They are used mainly in conditional compilation statements (debug, version and static if). The point is to enable conditional compilation to work on declarations. Stewart. -- My e-mail address is valid but not my primary mailbox. Please keep replies on the 'group where everybody may benefit.
Oct 14 2007