view dmd/GotoDefaultStatement.d @ 51:b7d29f613539

StaticAssertStatement.syntaxCopy IfStatement.syntaxCopy CompoundDeclarationStatement.syntaxCopy VoidInitializer.syntaxCopy TypeAArray.syntaxCopy TypeTypeof.syntaxCopy TypeAArray.resolve TypeSArray.deduceType TypeAArray.deduceType TypeAArray.implicitConvTo TemplateDeclaration.leastAsSpecialized TemplateTypeParameter.dummyArg TypeIdentifier.deduceType TemplateTypeParameter.syntaxCopy Lexer.hexStringConstant Lexer.delimitedStringConstant GotoDefaultStatement.ctor CaseRangeStatement.ctor Type.castMod StorageClassDeclaration.syntaxCopy TemplateDeclaration.syntaxCopy
author korDen
date Sat, 21 Aug 2010 11:17:42 +0400
parents 10317f0c89a5
children cab4c37afb89
line wrap: on
line source

module dmd.GotoDefaultStatement;

import dmd.Statement;
import dmd.SwitchStatement;
import dmd.Loc;
import dmd.Scope;
import dmd.Expression;
import dmd.InterState;
import dmd.OutBuffer;
import dmd.HdrGenState;
import dmd.IRState;
import dmd.BE;

class GotoDefaultStatement : Statement
{
    SwitchStatement sw;

    this(Loc loc)
	{
		super(loc);
		sw = null;
	}

    Statement syntaxCopy()
	{
		assert(false);
	}

    Statement semantic(Scope sc)
	{
		assert(false);
	}

    Expression interpret(InterState* istate)
	{
		assert(false);
	}

    BE blockExit()
	{
		assert(false);
	}

    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}

    void toIR(IRState *irs)
	{
		assert(false);
	}
}