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
expr in super
This is expected given we are treating super as a variable, while Jsonnet core AST super is just another literal.
super
C++ impl. returns the following:
{ foo: "bar", bar: super.foo }
RUNTIME ERROR: attempt to use super when there is no super class.
While:
{ foo: "bar", bar: "foo" in super }
outputs:
{ "bar": false, "foo": "bar" }
The following test fails due to this:
std.assertEqual({ f+: 3 }, { f: 3 })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
RUNTIME ERROR: attempt to use super when there is no super class.
While:
outputs:
The following test fails due to this:
The text was updated successfully, but these errors were encountered: