* Defaults are not to add default identifiers (fpdoc)

git-svn-id: trunk@40944 -
This commit is contained in:
michael 2019-01-20 17:55:15 +00:00
parent 2bcc195677
commit 4f8b595e30

View File

@ -730,6 +730,12 @@ begin
Scanner.AddDefine('CPU32');
end;
Parser := TPasParser.Create(Scanner, FileResolver, AEngine);
if (poSkipDefaultDefs in Options) then
begin
Writeln('>>> Clearing <<<');
Parser.ImplicitUses.Clear;
end;
Writeln('Implicit >>>',Parser.ImplicitUses.Text,'<<<');
Filename := '';
Parser.LogEvents:=AEngine.ParserLogEvents;
Parser.OnLog:=AEngine.Onlog;