Sign in
fuchsia
/
third_party
/
github.com
/
jqlang
/
jq
/
HEAD
/
.
/
tests
/
modules
/
test_bind_order.jq
blob: 30e1ee86f0fc840ec1164467021b2b329d31f976 [
file
] [
log
] [
blame
]
import
"test_bind_order0"
as
t
;
import
"test_bind_order1"
as
t
;
import
"test_bind_order2"
as
t
;
def
check
:
if
[
t
::
sym0
,
t
::
sym1
,
t
::
sym2
]
==
[
0
,
1
,
2
]
then
true
else
false
end
;