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
When attempting to load jsonnet/json values via std.extVar(), a stacktrace can appear with sjsonnet in circumstances which work as expected with go-jsonnet.
Reproducer
# example.jsonnetlocal x = std.extVar('x');
x.code
# reproduce.bashexport x="{code:123}"
jsonnet example.jsonnet --ext-code x
java -jar sjsonnet.jar example.jsonnet --ext-code x
… handling of numbers in manifestXmlJsonml, handling of code in extCode (#171)
Fixes#110 and
#149 and
#74 and
#56 and
#47 and
#114 and
#76
Mostly straightforward changes, though the constructor signature of
`Interpeter` and `Evaluator` had to change a bit to satisfy the fixed
`extCode` semantics. Added unit tests to assert the correct behaviors
When attempting to load jsonnet/json values via
std.extVar()
, a stacktrace can appear with sjsonnet in circumstances which work as expected with go-jsonnet.Reproducer
This should be tracked as part of #73
The text was updated successfully, but these errors were encountered: