What it means. A panic inside the transformer was caught by the top-level recover and surfaced as a coded error. Well-formed GALA source should never trigger this.
This is a transpiler bug, not an error in your program.
The header reads error[GALA-E0017]: internal transpiler panic: …, with the recovered panic message appended verbatim and a hint asking you to file an issue.
No triggering program is quoted here: by definition this code only appears when the transpiler hits a case it does not handle, so there is no stable repro to show. The error is positioned at the last source location the transformer tracked, which may or may not be near the real cause — copy the whole message into your report.
There is no user-side fix beyond restructuring the offending expression until the transpiler bug is fixed.
Before this code, an unguarded panic surfaced as a raw Go stack trace from the CLI — unactionable for users and easy for maintainers to overlook, because nothing referenced it. Wrapping at the recover seam gives both groups one search target.