view dmd/Keyword.d @ 124:731ab26f07bf

testing tool added
author korDen
date Fri, 03 Sep 2010 21:39:37 +0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.Keyword;

import dmd.common;
import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}