tree-sitter-dockerfile/test/corpus/arg.txt

41 lines
463 B
Plaintext
Raw Normal View History

2021-05-09 22:11:30 -04:00
==================
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)))