view dmd/Keyword.d @ 173:d237b38b5858

Small changes
author korDen
date Sun, 10 Oct 2010 01:55:35 +0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.Keyword;

import dmd.common;
import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}