TScope class in FxExpr.pas has element FUses:TUseList . It can create a TUseList , but never free it. So, this class should have a destructor to free FUses:
destructor TScope.Destroy; begin FreeAndNil(FUses); //By creation_zy inherited; end;
Log in to post a comment.