You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In planetiler I created a CEL script through ScriptHost.ScriptBuilder and I want to increase the limit on maximum size of a CEL expression. That option appears to be exposed on Parser.parse(options, source) but I can't see a way to configure those options from the top-level script builder API. Would it be possible to let the top-level script builder AI control those parse options? Or is there another way to do this?
The text was updated successfully, but these errors were encountered:
I guess you're referring to expressionSizeCodePointLimit in org.projectnessie.cel.parser.Options.
Looks like these optioned would need to be "wired up" via (new?) options in Env to ScriptHost.
Do you want to give it a try?
In planetiler I created a CEL script through
ScriptHost.ScriptBuilder
and I want to increase the limit on maximum size of a CEL expression. That option appears to be exposed onParser.parse(options, source)
but I can't see a way to configure those options from the top-level script builder API. Would it be possible to let the top-level script builder AI control those parse options? Or is there another way to do this?The text was updated successfully, but these errors were encountered: