LoweredAssignExp

When an assignment expression is lowered to a druntime call this class is used to store the lowering. It essentially behaves the same as an AssignExp, but it is used to not waste space for other AssignExp that are not lowered to anything.

extern (C++) final
class LoweredAssignExp : AssignExp {
Expression lowering;
}

Meta