finos / rune-dsl

The project containing the Rune DSL grammar and default code generators
Apache License 2.0
25 stars 30 forks source link

Code generator crashes when using Java keyword `exists` in Function output #792

Open JayasriR opened 2 months ago

JayasriR commented 2 months ago

Error:

qualified name may not be null

when generating code from

func Foo:
    inputs: input string (1..1)
    output: exists boolean (1..1)
    set exists: True

Replacing exists with isExists fixes the problem.