mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
97969a9363
Since #6287, bare variable assignments do not parse, which broke the "Unsupported use of '='" error message. This commit catches parse errors that occur on bare variable assignments. When a statement node fails to parse, then we check if there is at least one prefixing variable assignment. If so, we emit the old error message. See also #6347
86 lines
1.5 KiB
Fish
86 lines
1.5 KiB
Fish
# RUN: %fish %s
|
|
|
|
# erase all lowercase variables to make sure they don't break our tests
|
|
for varname in (set -xn | string match -r '^[a-z].*')
|
|
while set -q $varname
|
|
set -e $varname
|
|
end
|
|
end
|
|
|
|
# CHECK: bar
|
|
foo=bar echo $foo
|
|
|
|
# CHECK: nil
|
|
set -q foo; or echo nil
|
|
|
|
# CHECK: lx
|
|
foo=bar set -qlx foo; and echo lx
|
|
|
|
# CHECK: 3
|
|
a={1, 2, 3} count $a
|
|
|
|
# CHECK: 1+2+3
|
|
a={1, 2, 3} string join + $a
|
|
|
|
# CHECK: 1 2 3
|
|
a=(echo 1 2 3) echo $a
|
|
|
|
# CHECK: a a2
|
|
a=a b={$a}2 echo $a $b
|
|
|
|
# CHECK: a
|
|
a=a builtin echo $a
|
|
|
|
# CHECK: 0
|
|
a=failing-glob-* count $a
|
|
|
|
# CHECK: ''
|
|
a=b true | echo "'$a'"
|
|
|
|
if a=b true
|
|
# CHECK: ''
|
|
echo "'$a'"
|
|
end
|
|
|
|
# CHECK: b
|
|
not a=b echo $a
|
|
|
|
# CHECK: b
|
|
a=b not echo $a
|
|
|
|
# CHECK: b
|
|
a=b not builtin echo $a
|
|
|
|
# CHECK: /usr/bin:/bin
|
|
xPATH={/usr,}/bin sh -c 'echo $xPATH'
|
|
|
|
# CHECK: 2
|
|
yPATH=/usr/bin:/bin count $yPATH
|
|
|
|
# CHECK: b
|
|
a=b begin; true | echo $a; end
|
|
|
|
# CHECK: b
|
|
a=b if true; echo $a; end
|
|
|
|
# CHECK: b
|
|
a=b switch x; case x; echo $a; end
|
|
|
|
complete -c x --erase
|
|
complete -c x -xa arg
|
|
complete -C' a=b x ' # Mind the leading space.
|
|
# CHECK: arg
|
|
alias xalias=x
|
|
complete -C'a=b xalias '
|
|
# CHECK: arg
|
|
alias envxalias='a=b x'
|
|
complete -C'a=b envxalias '
|
|
# CHECK: arg
|
|
|
|
# Eval invalid grammar to allow fish to parse this file
|
|
eval 'a=(echo b)'
|
|
# CHECKERR: {{.*}}: Unsupported use of '='. In fish, please use 'set a (echo b)'.
|
|
eval ': | a=b'
|
|
# CHECKERR: {{.*}}: Unsupported use of '='. In fish, please use 'set a b'.
|
|
eval 'not a=b'
|
|
# CHECKERR: {{.*}}: Unsupported use of '='. In fish, please use 'set a b'.
|