view dmd/Keyword.d @ 84:be2ab491772e

Expressions -> Vector!Expression
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 16:12:19 +0100
parents 10317f0c89a5
children e28b18c23469
line wrap: on
line source

module dmd.Keyword;

import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}