1
0
dust/tree-sitter-dust/corpus/commands.txt
2024-01-25 08:27:24 -05:00

68 lines
1.6 KiB
Plaintext

================================================================================
Simple Command
================================================================================
*ls
--------------------------------------------------------------------------------
(root
(statement
(expression
(command
(command_text)))))
================================================================================
Nested Command
================================================================================
*less *ls
--------------------------------------------------------------------------------
(root
(statement
(expression
(command
(command_text)
(command_text)))))
================================================================================
Command with Arguments
================================================================================
*ls --long -a;
(*git status)
*git log;
--------------------------------------------------------------------------------
(root
(statement
(expression
(command
(command_text)
(command_text)
(command_text)
(command_text)
(command_text)
(command_text)
(command_text)))))
================================================================================
Nested Command with Arguments
================================================================================
*less *ls --long -a
--------------------------------------------------------------------------------
(root
(statement
(expression
(command
(command_text)
(command_text)
(command_text)
(command_text)))))