view trunk/src/dil/Symbols.d @ 517:b465c669d70c

Added module dil.Symbols.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 14 Dec 2007 23:10:35 +0100
parents
children 709e223a8eb9
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module dil.Symbols;
import dil.Symbol;
import common;

class Aggregate : Symbol
{
  Function[] funcs;
  Variable[] fields;
}

class Class : Aggregate
{

}

class Union : Aggregate
{

}

class Struct : Aggregate
{

}

class Function : Symbol
{

}

class Variable : Symbol
{

}