From 714623c91c2b038a75bfa216d59e0647ccc82d14 Mon Sep 17 00:00:00 2001 From: mattias Date: Mon, 7 Dec 2020 23:25:07 +0000 Subject: [PATCH] pastojs: added experimental target os electron --- compiler/packages/pastojs/src/fppas2js.pp | 6 ++++-- compiler/packages/pastojs/src/pas2jscompiler.pp | 2 ++ compiler/packages/pastojs/src/pas2jsfiler.pp | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/compiler/packages/pastojs/src/fppas2js.pp b/compiler/packages/pastojs/src/fppas2js.pp index 0f82741..0d0bf80 100644 --- a/compiler/packages/pastojs/src/fppas2js.pp +++ b/compiler/packages/pastojs/src/fppas2js.pp @@ -1054,13 +1054,15 @@ type type TPasToJsPlatform = ( PlatformBrowser, - PlatformNodeJS + PlatformNodeJS, + PlatformElectron ); TPasToJsPlatforms = set of TPasToJsPlatform; const PasToJsPlatformNames: array[TPasToJsPlatform] of string = ( 'Browser', - 'NodeJS' + 'NodeJS', + 'Electron' ); type TPasToJsProcessor = ( diff --git a/compiler/packages/pastojs/src/pas2jscompiler.pp b/compiler/packages/pastojs/src/pas2jscompiler.pp index 2c0dc20..b831b29 100644 --- a/compiler/packages/pastojs/src/pas2jscompiler.pp +++ b/compiler/packages/pastojs/src/pas2jscompiler.pp @@ -4769,6 +4769,7 @@ begin w(' -T : Set target platform'); w(' -Tbrowser: default'); w(' -Tnodejs : add pas.run(), includes -Jc'); + w(' -Telectron: experimental'); w(' -u : Undefines the symbol '); w(' -v : Be verbose. is a combination of the following letters:'); w(' e : Show errors (default)'); @@ -4948,6 +4949,7 @@ begin Log.LogPlain('Supported targets (targets marked with ''{*}'' are under development):'); Log.LogPlain([' ',PasToJsPlatformNames[PlatformBrowser],': webbrowser']); Log.LogPlain([' ',PasToJsPlatformNames[PlatformNodeJS],': Node.js']); + Log.LogPlain([' ',PasToJsPlatformNames[PlatformElectron],': Electron app']); Log.LogLn; Log.LogPlain('Supported CPU instruction sets:'); Log.LogPlain(' ECMAScript5, ECMAScript6'); diff --git a/compiler/packages/pastojs/src/pas2jsfiler.pp b/compiler/packages/pastojs/src/pas2jsfiler.pp index 7edade6..f083426 100644 --- a/compiler/packages/pastojs/src/pas2jsfiler.pp +++ b/compiler/packages/pastojs/src/pas2jsfiler.pp @@ -267,7 +267,8 @@ const PCUDefaultTargetPlatform = PlatformBrowser; PCUTargetPlatformNames: array[TPasToJsPlatform] of string = ( 'Browser', - 'NodeJS' + 'NodeJS', + 'Electron' ); PCUDefaultTargetProcessor = ProcessorECMAScript5; @@ -3989,6 +3990,7 @@ var Templ: TPasGenericTemplateType; TemplObj: TJSONObject; begin + if Parent=nil then ; if (GenericTemplateTypes=nil) or (GenericTemplateTypes.Count=0) then exit; Arr:=TJSONArray.Create; Obj.Add('GenericTemplateTypes',Arr);