view dmd/RET.d @ 157:b7b61140701d

* added all missing default cases in switch statements + Lexer.getDocComment + Lexer.combineComments
author trass3r
date Thu, 16 Sep 2010 01:34:10 +0200
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.RET;

enum RET
{
    RETregs	= 1,	// returned in registers
    RETstack	= 2,	// returned on stack
}