mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00

* store a node's verbosity in the node so that e.g. disabling warnings also disables warnings for this node in pass_1 (the above together fix mantis #12076) * save/restore verbosity with {$push}/{$pop} (mantis #12075) * if warnings/notes/hints are turned off, also do not count encountered ones for the totals (otherwise -Sew cannot be used properly in combination with {$warnings off}, because disabled warnings will still trigger a compiler error) -- this required adding -vw/-vn/-vh to all tests using -Sew/-Sen/-Seh - removed some superfluous state saving/restoring from firstpass() git-svn-id: trunk@12025 -
67 lines
828 B
ObjectPascal
67 lines
828 B
ObjectPascal
{ %OPT=-Sew -vw }
|
|
|
|
unit tw10736;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
{ TAbstractPage }
|
|
|
|
TAbstractPage = class
|
|
protected
|
|
procedure Execute virtual; abstract;
|
|
public
|
|
class procedure PageExecute;
|
|
end;
|
|
|
|
TPageClass = class of TAbstractPage;
|
|
|
|
{ TPageUnknown }
|
|
|
|
TPageUnknown = class(TAbstractPage)
|
|
protected
|
|
procedure Execute override;
|
|
end;
|
|
|
|
procedure HandleRequest;
|
|
|
|
implementation
|
|
|
|
{ TAbstractPage }
|
|
|
|
class procedure TAbstractPage.PageExecute;
|
|
begin
|
|
(*
|
|
with Self.Create do try
|
|
Execute;
|
|
finally
|
|
Free;
|
|
end;
|
|
*)
|
|
end;
|
|
|
|
{ TPageUnknown }
|
|
|
|
procedure TPageUnknown.Execute;
|
|
begin
|
|
//Whatever...
|
|
end;
|
|
|
|
procedure HandleRequest;
|
|
//Zomaar een kleine besturing, iemand andere ideen?
|
|
var Page: TPageClass;
|
|
begin
|
|
Page := TPageUnknown;
|
|
Page.PageExecute;
|
|
end;
|
|
|
|
|
|
end.
|
|
|