tree-sitter-dockerfile/test/corpus/arg.txt
tvrinssen 1bf9daef46
Support heredocs (#45)
This adds support for heredocs in Dockerfiles. This required adding an external scanner to store the required state.

Co-authored-by: Camden Cheek <camden@ccheek.com>
2024-04-19 14:08:28 -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)))