We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sjsonnet
jsonnet
See the following jsonnet file:
$ cat duplicate_local.jsonnet { local var = ['foo'], local var = var + ['bar'], var: var, }
The jsonnet reference implementation complains:
$ jsonnet duplicate_local.jsonnet duplicate_local.jsonnet:3:9-12 Duplicate local var: var local var = var + ['bar'],
However, sjsonnet happily accepts it:
$ sjsonnet duplicate_local.jsonnet { "var": [ "foo", "bar" ] }
Independent of what makes more sense, I think sjsonnet should behave the same as jsonnet.
Jsonnet commandline interpreter v0.17.0 Sjsonnet 0.4.3
The text was updated successfully, but these errors were encountered:
29bcc9a
Successfully merging a pull request may close this issue.
See the following jsonnet file:
The
jsonnet
reference implementation complains:However,
sjsonnet
happily accepts it:Independent of what makes more sense, I think
sjsonnet
should behave the same asjsonnet
.Jsonnet commandline interpreter v0.17.0
Sjsonnet 0.4.3
The text was updated successfully, but these errors were encountered: