}
public void outThisExp(ThisLiteral node)
{
if( mCurrentClass == null )
throw new InternalException("outThisExp: mCurrentClass==null");
VarSTE ste = (VarSTE) this.mCurrentST.lookup("this");
this.mCurrentST.setNodeSTE(node, ste);
this.mCurrentST.setExpType(node, Type.getClassType(this.mCurrentClass.getName()));
}