tree-sitter-dockerfile/corpus/arg.txt
2021-05-09 20:11:30 -06:00

41 lines
463 B
Plaintext

==================
No default
==================
ARG test
---
(source_file
(arg_instruction
name: (unquoted_string)))
==================
With default
==================
ARG foo=bar
---
(source_file
(arg_instruction
name: (unquoted_string)
default: (unquoted_string)))
==================
With quoted default
==================
ARG foo="bar"
---
(source_file
(arg_instruction
name: (unquoted_string)
default: (double_quoted_string)))