Files
tree-sitter-nix-shell/corpus/shebang_with_sub_interpreter.txt
2023-07-04 08:10:05 +00:00

23 lines
346 B
Plaintext

==================
Minimal nix-shell invocation
==================
#!/usr/bin/env nix-shell
#!nix-shell -i bash
---
(source_file
(first_line
(shebang_open)
(opt_ws)
(env)
(ws)
(nix_shell))
(non_first_line
(newline)
(annotation_line
(shebang_open)
(opt_ws)
(nix_shell)
(nix_shell_args))))