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
$ cat util/config_to_json.jsonnet function(cfg) local to_json = function(arr) local obj = {}; if std.length(arr) == 0 then obj else to_json(obj, arr[1:]) tailstrict; to_json(std.split(cfg, "\n")) $ jsonnet --tla-str cfg="foo" util/config_to_json.jsonnet [1] 31276 segmentation fault (core dumped) jsonnet --tla-str cfg="foo" util/config_to_json.jsonnet
The text was updated successfully, but these errors were encountered:
Thanks, I'll look into this on the subway home
Sorry, something went wrong.
54e36bb
Merge pull request #183 from sparkprime/fix_too_many_args_segfault
2731134
Check for too many positional params, fix #180
This was actually reproducible with just (function (x) x)(1, 2)
(function (x) x)(1, 2)
No branches or pull requests
The text was updated successfully, but these errors were encountered: