module volt.visitor.nodereplace
Home of ExpReferenceReplacer.
Code Map
//! Home of ExpReferenceReplacer.
module volt.visitor.nodereplace;
class ExpReferenceReplacer : NullVisitor
{
public:
fromDecl: ir.Declaration;
toExp: ir.Exp;
public:
this(decl: ir.Declaration, exp: ir.Exp) { }
fn visit(exp: ir.Exp, eref: ir.ExpReference) Status { }
}