Jsonnet allows to reference other parameters when defining the default value of a function parameter, see the example below.
However, Jsonnet Pro does not recognize the references and therefore shows an "unresolved variable reference" error (see screenshot of example). As Jsonnet is able to render the code listed below, this error seems to be a bug in Jsonnet Pro.
Example
Jsonnet
function(
a=1,
b=a+1,
c=a+b+1,
)
{ a: a, b: b, c: c }
Jsonnet allows to reference other parameters when defining the default value of a function parameter, see the example below.
However, Jsonnet Pro does not recognize the references and therefore shows an "unresolved variable reference" error (see screenshot of example). As Jsonnet is able to render the code listed below, this error seems to be a bug in Jsonnet Pro.
Example
Jsonnet
Output
Screenshot of Jsonnet Pro