pas2js: fixed macro stamp

git-svn-id: trunk@58145 -
This commit is contained in:
mattias 2018-06-05 17:37:18 +00:00
parent 96c06ef599
commit 95d0e4cf75

View File

@ -215,13 +215,16 @@ begin
end;
constructor TPas2jsOptions.Create;
var
o: TPas2jsCachedOption;
begin
FChangeStamp:=LUInvalidChangeStamp64;
FCachedOptions[p2jcoCompilerFilename].RawValue:=PJSDefaultCompiler;
FCachedOptions[p2jcoHTTPServerFilename].RawValue:=PJSDefaultHTTPServer;
FCachedOptions[p2jcoNodeJSFilename].RawValue:=PJSDefaultNodeJS;
FCachedOptions[p2jcoBrowserFilename].RawValue:=PJSDefaultBrowser;
for o in TPas2jsCachedOption do
FCachedOptions[o].Stamp:=LUInvalidChangeStamp64;
end;
destructor TPas2jsOptions.Destroy;