summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-01-03 14:16:33 +0000
committerGitHub <noreply@github.com>2024-01-03 14:16:33 +0000
commitcd81c7fa6bf0d061f455f67aae72dc5537f7851d (patch)
tree0ace6e6eae36776dc070b51a607af1fbba23ab87 /tests
parentc76ed99db2dbedf111965cb53fc36bb14f1da788 (diff)
Bump assets/syntaxes/02_Extra/SublimeJQ from `6870582` to `b7e53e5` (#2820)
* Bump assets/syntaxes/02_Extra/SublimeJQ from `6870582` to `b7e53e5` Bumps [assets/syntaxes/02_Extra/SublimeJQ](https://github.com/zogwarg/SublimeJQ) from `6870582` to `b7e53e5`. - [Commits](https://github.com/zogwarg/SublimeJQ/compare/687058289c1a888e0895378432d66b41609a84d8...b7e53e5d86814f04a48d2e441bcf5f9fdf07e9c1) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/SublimeJQ dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * update highlighted version of sample.jq * update changelog --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Keith Hall <kingkeith+github@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/syntax-tests/highlighted/JQ/sample.jq32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/syntax-tests/highlighted/JQ/sample.jq b/tests/syntax-tests/highlighted/JQ/sample.jq
index ba9c853f..057e9edd 100644
--- a/tests/syntax-tests/highlighted/JQ/sample.jq
+++ b/tests/syntax-tests/highlighted/JQ/sample.jq
@@ -1,31 +1,31 @@
import "../imported-file" ;
# With Comments !
-def weird($a; $b; $c):
- [ $a, $b, $c ] | transpose | reduce .[][] as $item (
- [];
- . + $item.property
- )
+def weird($a; $b; $c):
+ [ $a, $b, $c ] | transpose | reduce .[][] as $item (
+ [];
+ . + $item.property
+ )
;
-. | weird (.a; .b; .c) |
+. | weird (.a; .b; .c) |
(
-if (. | contains("never") ) then
+if (. | contains("never") ) then
 "Why yes"
else
 12.23
end
-) as $never |
+) as $never |
{
 hello,
 why: "because",
- hello: ( weird | ascii_upcase ),
- format_eg: ( . | @json "My json string \( . | this | part | just | white | ascii_upcase | transpose)" ),
- never: $never,
+ hello: ( weird | ascii_upcase ),
+ format_eg: ( . | @json "My json string \( . | this | part | just | white | ascii_upcase | transpose)" ),
+ never: $never,
 "literal_key": literal_value,
 "this": 12.1e12,
 "part": "almost"
@@ -38,8 +38,8 @@
 similar: "but not quite"
 }
 }
- ],
-} | (
+ ],
+} | (
 
 # And with very basic brace matching
 
@@ -47,13 +47,13 @@
 ] 
 
 # Other invalid ends
- ( [ } ] )
+ ( [ } ] )
 # A "valid" sequence
- ( [ { key: () , other_key:( [ [] [[]] ] ), gaga } ] )
+ ( [ { key: () , other_key:( [ [] [[]] ] ), gaga } ] )
 # A "invalid" sequence
- ( [ { key: () , other_key:( [ [] [[] ] ), gaga } ] )
+ ( [ { key: () , other_key:( [ [] [[] ] ), gaga } ] )
 "A string\n whith escaped characters \" because we can"
)