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
If support for "the old syntax of allowing elided quotes in JSON literal expressions" is intentional, then it should be consistent and should also come with a deprecation warning (cf. JEP-12).
The text was updated successfully, but these errors were encountered:
https://jmespath.org/specification.html#grammar and https://jmespath.site/#spec-grammar both require a
`…`
literal to contain a valid JSON value.tokenize('`[x]`')
accordingly throws a SyntaxError, but expressions liketokenize('`x`')
andtokenize('`0x`')
andtokenize('`Infinity`')
incorrectly return a Literal.If support for "the old syntax of allowing elided quotes in JSON literal expressions" is intentional, then it should be consistent and should also come with a deprecation warning (cf. JEP-12).
The text was updated successfully, but these errors were encountered: