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",
LITERAL: "literal",
JS: "js",
DECODE_ID: "decodeId",
}
export const LITERAL_MARKER = "%LITERAL%"

View File

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

File diff suppressed because it is too large Load Diff