tree-sitter-bash/corpus/expressions.txt

233 lines
4.8 KiB
Plaintext

=============================
Literal words
=============================
echo a
echo a b
---
(program
(command (command_name (word)) (word))
(command (command_name (word)) (word) (word)))
=============================
Simple variable expansions
=============================
echo $abc
---
(program
(command (command_name (word)) (simple_expansion (variable_name))))
=============================
Variable expansions
=============================
echo ${abc}
echo ${abc:-def}
echo ${abc:- }
echo ${abc:
}
---
(program
(command (command_name (word)) (expansion (variable_name)))
(command (command_name (word)) (expansion (variable_name) (word)))
(command (command_name (word)) (expansion (variable_name)))
(command (command_name (word)) (expansion (variable_name))))
===================================
Other variable expansion operators
===================================
cat ${BAR} ${ABC=def} ${GHI:?jkl}
---
(program
(command
(command_name (word))
(expansion (variable_name))
(expansion (variable_name) (word))
(expansion (variable_name) (word))))
=============================
Command substitutions
=============================
echo `echo hi`
echo $(echo $(echo hi))
---
(program
(command
(command_name (word))
(command_substitution (command (command_name (word)) (word))))
(command
(command_name (word))
(command_substitution (command
(command_name (word))
(command_substitution (command
(command_name (word))
(word)))))))
=============================
Process substitutions
=============================
wc -c <(echo abc && echo def)
echo abc > >(wc -c)
---
(program
(command
(command_name (word))
(word)
(process_substitution (list
(command (command_name (word)) (word))
(command (command_name (word)) (word)))))
(command
(command_name (word))
(word)
(file_redirect (process_substitution
(command (command_name (word)) (word))))))
=============================
Single quoted strings
=============================
echo 'a b' 'c d'
---
(program
(command (command_name (word)) (raw_string) (raw_string)))
=============================
Double quoted strings
=============================
echo "a" "b"
echo "a ${b} c" "d $e"
---
(program
(command (command_name (word))
(string)
(string))
(command (command_name (word))
(string (expansion (variable_name)))
(string (simple_expansion (variable_name)))))
=========================================
Strings containing command substitutions
=========================================
find "`dirname $file`" -name "$base"'*'
---
(program
(command
(command_name (word))
(string (command_substitution (command (command_name (word)) (simple_expansion (variable_name)))))
(word)
(concatenation
(string (simple_expansion (variable_name)))
(raw_string))))
=========================================
Variable declaration: declare & typeset
=========================================
declare var1
typeset -i -r var2=42 var3=10
---
(program
(declaration_command (simple_variable_name))
(declaration_command (argument) (argument)
(variable_assignment (variable_name) (word))
(variable_assignment (variable_name) (word))))
=========================================
Variable declaration: readonly
=========================================
readonly var1
readonly var2=42
---
(program
(declaration_command (simple_variable_name))
(declaration_command (variable_assignment (variable_name) (word))))
=========================================
Variable declaration: local
=========================================
local a=42 b
local -r c
---
(program
(declaration_command
(variable_assignment (variable_name) (word))
(simple_variable_name))
(declaration_command (argument) (simple_variable_name)))
=========================================
Variable declaration: export
=========================================
export PATH
export FOOBAR PATH="$PATH:/usr/foobar/bin"
---
(program
(declaration_command (simple_variable_name))
(declaration_command
(simple_variable_name)
(variable_assignment (variable_name) (string (simple_expansion (variable_name))))))
=========================================
Arrays and array expansions
=========================================
a=()
b=(1 2 3)
echo ${a[@]}
echo ${#b[@]}
a[$i]=50
a+=(foo "bar" $(baz))
---
(program
(variable_assignment (variable_name) (array))
(variable_assignment (variable_name) (array (word) (word) (word)))
(command (command_name (word)) (expansion (variable_name)))
(command (command_name (word)) (expansion (variable_name)))
(variable_assignment
(subscript (variable_name) (simple_expansion (variable_name)))
(word))
(variable_assignment
(variable_name)
(array
(word)
(string)
(command_substitution (command (command_name (word)))))))