view sema/Symbol.d @ 27:9031487e97d7 new_gen

Various changes related to DType * Drop the typeToLLVM table from LLVMGen * Removed circular dependency * Added basic types to DType
author Anders Halager <halager@gmail.com>
date Sun, 20 Apr 2008 01:08:50 +0200
parents
children
line wrap: on
line source

module sema.Symbol;

public
import sema.DType,
       ast.Exp;

class Symbol
{
    Identifier id;
    DType type;
}