Alexandre Moreno

Results 20 issues of Alexandre Moreno

help wanted
language feature

We are using the exact same Jsonnet implementation of the `std` object that is used in the C++ original implementation This replacement would not need to modify the vanilla `std.jsonnet`...

good first issue
performance
stdlib

This is expected given we are treating super as a variable, while Jsonnet core AST `super` is just another literal. C++ impl. returns the following: ```Jsonnet { foo: "bar", bar:...

bug

Add a mode for generating multiple JSON files from a single Jsonnet file ```jsonnet // multiple_output.jsonnet { "a.json": { x: 1, y: $["b.json"].y, }, "b.json": { x: $["a.json"].x, y: 2,...

help wanted
command line

Cyclic imports are valid and well defined: ```console $ cat a.jsonnet { a:: 'a', c: (import 'b.jsonnet').b, } $ cat b.jsonnet { b:: (import 'a.jsonnet').a, } $ /google/data/ro/teams/jsonnet/jsonnet a.jsonnet {...

bug

Add basic documentation throughout the library following kowainik's super useful guide: https://kowainik.github.io/posts/haddock-tips

documentation

Using e.g. https://github.com/haskell/haskeline

Ref: https://github.com/line/line-bot-sdk-python/pull/409#issue-1427548099

help wanted
good first issue

help wanted
language feature