tree-sitter-cmake/corpus/foreach.txt

35 lines
500 B
Plaintext
Raw Normal View History

2021-06-06 14:38:18 -04:00
==========================================
[foreach, lowercase, empty_for, empty_end]
==========================================
foreach(var)
endforeach()
---
(source_file
(command_invocation
(foreach_loop
(variable)
)
)
)
==============================================
[foreach, lowercase, empty_for, non_empty_end]
==============================================
foreach(var)
endforeach(var)
---
(source_file
(command_invocation
(foreach_loop
(variable)
(variable)
)
)
)