Automation workflow implementation

This commit is contained in:
Denis Arh
2021-03-12 13:12:07 +01:00
parent d56f2fa82f
commit 13b57c8d72
155 changed files with 22186 additions and 208 deletions
+5 -1
View File
@@ -75,6 +75,8 @@ func Proc() {
"camelCase": camelCase,
"export": export,
"unexport": unexport,
"removePtr": removePtr,
"hasPtr": hasPtr,
"toggleExport": toggleExport,
"toLower": strings.ToLower,
"toUpper": strings.ToUpper,
@@ -275,11 +277,13 @@ func Proc() {
if aFuncsDefs, err = procAutomationFunctions(aFuncsSrc...); err == nil {
if genCode {
expandAutomationFunctionTypes(aFuncsDefs, exprTypeDefs)
err = genAutomationFunctions(tpls, aFuncsDefs...)
}
}
if outputErr(err, "failed to process store:\n") {
if outputErr(err, "failed to process automation functions:\n") {
return
}