mirror of
https://github.com/pnx/tree-sitter-dotenv
synced 2026-06-16 01:54:56 +02:00
add integer and boolean values
This commit is contained in:
parent
948e93ffac
commit
adc9052da5
5 changed files with 293 additions and 71 deletions
25
test/corpus/values.txt
Normal file
25
test/corpus/values.txt
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
================================================================================
|
||||
values
|
||||
================================================================================
|
||||
|
||||
INTEGER_VALUE = 1234
|
||||
NEGATIVE_INTEGER_VALUE = -1234
|
||||
|
||||
BOOL_VALUE = true
|
||||
BOOL_VALUE = false
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(document
|
||||
(assignment
|
||||
key: (identifier)
|
||||
value: (integer))
|
||||
(assignment
|
||||
key: (identifier)
|
||||
value: (integer))
|
||||
(assignment
|
||||
key: (identifier)
|
||||
value: (boolean))
|
||||
(assignment
|
||||
key: (identifier)
|
||||
value: (boolean)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue