mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-18 15:39:05 +02:00
pastojs: uses in filename: if not found try pcu
This commit is contained in:
parent
7e1adf88b7
commit
48b8b21dba
@ -4793,8 +4793,7 @@ begin
|
||||
end else begin
|
||||
// search Pascal file with InFilename
|
||||
FoundPasFilename:=FS.FindUnitFileName(UseUnitname,InFilename,ModuleDir,FoundPasIsForeign);
|
||||
if FoundPasFilename='' then
|
||||
exit; // an in-filename unit source is missing -> stop
|
||||
if FoundPasFilename<>'' then
|
||||
FoundPasUnitName:=ExtractFilenameOnly(InFilename);
|
||||
|
||||
// Note: at the moment if there is a source do not search for pcu
|
||||
@ -4804,9 +4803,11 @@ begin
|
||||
// no pas file -> search pcu
|
||||
FoundPCUFilename:=PCUSupport.FindPCU(UseUnitName);
|
||||
if FoundPCUFilename<>'' then
|
||||
begin
|
||||
FoundPCUUnitName:=UseUnitName;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
if (FoundPasFilename='') and (FoundPCUFilename<>'') then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user