This commit is contained in:
mikesealey 2025-02-12 10:09:16 +00:00
parent 43fb221039
commit a434973e6a
3 changed files with 536 additions and 145 deletions

View File

@ -36,6 +36,7 @@ export const HelperFunctionNames = {
ALL: "all", ALL: "all",
LITERAL: "literal", LITERAL: "literal",
JS: "js", JS: "js",
DECODE_ID: "decodeId",
} }
export const LITERAL_MARKER = "%LITERAL%" export const LITERAL_MARKER = "%LITERAL%"

View File

@ -32,6 +32,9 @@ const HELPERS = [
}), }),
// javascript helper // javascript helper
new Helper(HelperFunctionNames.JS, processJS, false), new Helper(HelperFunctionNames.JS, processJS, false),
new Helper(HelperFunctionNames.DECODE_ID, value => {
return value
}),
// this help is applied to all statements // this help is applied to all statements
new Helper( new Helper(
HelperFunctionNames.ALL, HelperFunctionNames.ALL,

File diff suppressed because it is too large Load Diff