tree-sitter-bash/corpus/programs.txt

43 lines
538 B
Plaintext
Raw Normal View History

2017-07-14 21:34:49 +00:00
===============================
Comments
===============================
#!/bin/bash
# hi
---
(program
(comment)
(comment))
2017-07-14 21:39:28 +00:00
===============================
Escaped newlines
===============================
abc \
d \
e
f=g \
h=i \
j \
--k
---
(program
2017-07-14 23:11:35 +00:00
(command
2017-07-14 21:39:28 +00:00
(command_name)
(argument)
2017-07-14 23:11:35 +00:00
(argument))
(command
2017-07-14 21:39:28 +00:00
(environment_variable_assignment
(variable_name)
(argument))
(environment_variable_assignment
(variable_name)
(argument))
(command_name)
2017-07-14 23:11:35 +00:00
(argument)))