view dmd/TypeInfoFunctionDeclaration.d @ 84:be2ab491772e

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

module dmd.TypeInfoFunctionDeclaration;

import dmd.Type;
import dmd.TypeInfoDeclaration;
import dmd.backend.dt_t;

class TypeInfoFunctionDeclaration : TypeInfoDeclaration
{
	this(Type tinfo)
	{
		super(tinfo, 0);
        type = Type.typeinfofunction.type;
	}

	override void toDt(dt_t** pdt)
	{
		assert(false);
	}
}