diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-25 18:16:24 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-25 18:16:24 +0900 |
| commit | 11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f (patch) | |
| tree | 72d5f22d96e2430fe943ede11dc76c9c8dab3517 /docs/jq_grammar.md | |
| parent | 48d9ec8aef4c3e7f3574346a6cf6a1fa3d725561 (diff) | |
| download | zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.tar.gz zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.tar.zst zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.zip | |
implement string literals
Diffstat (limited to 'docs/jq_grammar.md')
| -rw-r--r-- | docs/jq_grammar.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/jq_grammar.md b/docs/jq_grammar.md index 5405e95..ceb0733 100644 --- a/docs/jq_grammar.md +++ b/docs/jq_grammar.md @@ -95,6 +95,7 @@ primary: 'true' 'false' NUMBER + STRING '.' FIELD ``` @@ -208,7 +209,10 @@ term: term '[' query ':' ']' term '[' ':' query ']' term '?' - LITERAL + 'null' + 'true' + 'false' + NUMBER STRING FORMAT '-' term |
