tree-sitter-toml/corpus/spec.txt

1113 lines
22 KiB
Plaintext
Raw Normal View History

2019-08-18 06:30:34 -04:00
================================================================================
VALID - comment - basic
================================================================================
# This is a full-line comment
key = "value" # This is a comment at the end of a line
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(string)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - key/value pair - basic
================================================================================
key = "value"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
INVALID - key/value pair - empty value
2019-08-18 06:30:34 -04:00
================================================================================
key = # INVALID
--------------------------------------------------------------------------------
(document
(ERROR
(key)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - bare keys
================================================================================
key = "value"
bare_key = "value"
bare-key = "value"
1234 = "value"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - quoted keys
================================================================================
"127.0.0.1" = "value"
"character encoding" = "value"
"ʎǝʞ" = "value"
'key2' = "value"
'quoted "value"' = "value"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
INVALID - keys - empty bare key
2019-08-18 06:30:34 -04:00
================================================================================
= "no key name" # INVALID
"" = "blank" # VALID but discouraged
'' = 'blank' # VALID but discouraged
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key
2019-08-22 05:22:58 -04:00
(MISSING _bare_key))
2019-08-18 06:30:34 -04:00
(string)
2019-08-22 05:22:58 -04:00
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - dotted keys
================================================================================
name = "Orange"
physical.color = "orange"
physical.shape = "round"
site."google.com" = true
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(string))
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(string))
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(boolean)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - duplicate keys (semantically INVALID)
================================================================================
# DO NOT DO THIS
name = "Tom"
name = "Pradyun"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - directly defined nested keys
================================================================================
a.b.c = 1
a.d = 2
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(integer))
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(integer)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - keys - overlapped keys (semantically INVALID)
================================================================================
# THIS IS INVALID
a.b = 1
a.b.c = 2
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(integer))
2019-08-18 06:30:34 -04:00
(pair
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(integer)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - string - basic strings
================================================================================
str = "I'm a string. \"You can quote me\". Name\tJos\u00E9\nLocation\tSF."
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string
(escape_sequence)
(escape_sequence)
(escape_sequence)
(escape_sequence)
(escape_sequence)
(escape_sequence))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - string - multi-line basic strings
================================================================================
str1 = """
Roses are red
Violets are blue"""
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - string - multi-line basic strings with trailing backslashes
================================================================================
# The following strings are byte-for-byte equivalent:
str1 = "The quick brown fox jumps over the lazy dog."
str2 = """
The quick brown \
fox jumps over \
the lazy dog."""
str3 = """\
The quick brown \
fox jumps over \
the lazy dog.\
"""
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string
(escape_sequence)
(escape_sequence)))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string
(escape_sequence)
(escape_sequence)
(escape_sequence)
(escape_sequence))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - string - literal strings
================================================================================
# What you see is what you get.
winpath = 'C:\Users\nodejs\templates'
winpath2 = '\\ServerX\admin$\system32\'
quoted = 'Tom "Dubs" Preston-Werner'
regex = '<\i\c*\s*>'
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - string - multi-line literal strings
================================================================================
regex2 = '''I [dw]on't need \d{2} apples'''
lines = '''
The first newline is
trimmed in raw strings.
All other whitespace
is preserved.
'''
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - integer - signed/unsigned decimal integer
================================================================================
int1 = +99
int2 = 42
int3 = 0
int4 = -17
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - integer - decimal integer with underscores
================================================================================
int5 = 1_000
int6 = 5_349_221
int7 = 1_2_3_4_5 # VALID but discouraged
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - integer - hexadecimal/octal/binary integer
================================================================================
# hexadecimal with prefix `0x`
hex1 = 0xDEADBEEF
hex2 = 0xdeadbeef
hex3 = 0xdead_beef
# octal with prefix `0o`
oct1 = 0o01234567
oct2 = 0o755 # useful for Unix file permissions
# binary with prefix `0b`
bin1 = 0b11010110
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer)
(comment))
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(integer)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - float - float with fractional or exponent or both
================================================================================
# fractional
flt1 = +1.0
flt2 = 3.1415
flt3 = -0.01
# exponent
flt4 = 5e+22
flt5 = 1e6
flt6 = -2E-2
# both
flt7 = 6.626e-34
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float))
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(float)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - float - float with underscores
================================================================================
flt8 = 9_224_617.445_991_228_313
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(float)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - float - special float values
================================================================================
# infinity
sf1 = inf # positive infinity
sf2 = +inf # positive infinity
sf3 = -inf # negative infinity
# not a number
sf4 = nan # actual sNaN/qNaN encoding is implementation specific
sf5 = +nan # same as `nan`
sf6 = -nan # valid, actual encoding is implementation specific
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(float)
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float)
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float)
(comment))
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(float)
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float)
(comment))
2019-08-18 06:30:34 -04:00
(pair
(key)
(float)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - boolean - basic
================================================================================
bool1 = true
bool2 = false
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(boolean))
2019-08-18 06:30:34 -04:00
(pair
(key)
(boolean)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - offset date time - basic
================================================================================
odt1 = 1979-05-27T07:32:00Z
odt2 = 1979-05-27T00:32:00-07:00
odt3 = 1979-05-27T00:32:00.999999-07:00
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(offset_date_time))
2019-08-18 06:30:34 -04:00
(pair
(key)
(offset_date_time))
2019-08-18 06:30:34 -04:00
(pair
(key)
(offset_date_time)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - offset date time - whitespace as delimiter
================================================================================
odt4 = 1979-05-27 07:32:00Z
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(offset_date_time)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - local date time - basic
================================================================================
ldt1 = 1979-05-27T07:32:00
ldt2 = 1979-05-27T00:32:00.999999
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(local_date_time))
2019-08-18 06:30:34 -04:00
(pair
(key)
(local_date_time)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - local date - basic
================================================================================
ld1 = 1979-05-27
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(local_date)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - local time - basic
================================================================================
lt1 = 07:32:00
lt2 = 00:32:00.999999
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(local_time))
2019-08-18 06:30:34 -04:00
(pair
(key)
(local_time)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array - basic (semantically INVALID for children with mixed types)
================================================================================
arr1 = [ 1, 2, 3 ]
arr2 = [ "red", "yellow", "green" ]
arr3 = [ [ 1, 2 ], [3, 4, 5] ]
arr4 = [ "all", 'strings', """are the same""", '''type''']
arr5 = [ [ 1, 2 ], ["a", "b", "c"] ]
arr6 = [ 1, 2.0 ] # INVALID
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(integer)
(integer)
(integer)))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(string)
(string)
(string)))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(array
(integer)
(integer))
2019-08-18 06:30:34 -04:00
(array
(integer)
(integer)
(integer))))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(string)
(string)
(string)
(string)))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(array
(integer)
(integer))
2019-08-18 06:30:34 -04:00
(array
(string)
(string)
(string))))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(integer)
(float))
2019-08-22 05:22:58 -04:00
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array - allow newlines
================================================================================
arr7 = [
1, 2, 3
]
arr8 = [
1,
2, # this is ok
]
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(integer)
(integer)
(integer)))
2019-08-18 06:30:34 -04:00
(pair
(key)
(array
(integer)
(integer)
(comment))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - header
================================================================================
[table]
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(table
2019-08-22 05:22:58 -04:00
(key)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - basic
================================================================================
[table-1]
key1 = "some string"
key2 = 123
[table-2]
key1 = "another string"
key2 = 456
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(table
(key)
(pair
(key)
(string))
(pair
(key)
(integer)))
2019-08-18 06:30:34 -04:00
(table
(key)
(pair
(key)
(string))
(pair
(key)
(integer))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - header with dotted key
================================================================================
[dog."tater.man"]
type.name = "pug"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(key)
(key))
(pair
(dotted_key
(key)
(key))
(string))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table- header with whitespaces
================================================================================
[a.b.c] # this is best practice
[ d.e.f ] # same as [d.e.f]
[ g . h . i ] # same as [g.h.i]
[ j . "ʞ" . 'l' ] # same as [j."ʞ".'l']
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(comment))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(comment))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(comment))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - directly defined nested header key
================================================================================
# [x] you
# [x.y] don't
# [x.y.z] need these
[x.y.z.w] # for this to work
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(comment)
(comment)
(table
(dotted_key
(dotted_key
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(key))
(key))
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - duplicate header key (semantically INVALID)
================================================================================
# DO NOT DO THIS
[a]
b = 1
[a]
c = 2
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(table
(key)
(pair
(key)
(integer)))
2019-08-18 06:30:34 -04:00
(table
(key)
(pair
(key)
(integer))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - table - overlapped header key (semantically INVALID)
================================================================================
# DO NOT DO THIS EITHER
[a]
b = 1
[a.b]
c = 2
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(table
(key)
(pair
(key)
(integer)))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(key)
(key))
(pair
(key)
(integer))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - inline table - basic
================================================================================
name = { first = "Tom", last = "Preston-Werner" }
point = { x = 1, y = 2 }
animal = { type.name = "pug" }
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(pair
(key)
(inline_table
(pair
(key)
(string))
2019-08-18 06:30:34 -04:00
(pair
(key)
(string))))
2019-08-18 06:30:34 -04:00
(pair
(key)
(inline_table
(pair
(key)
(integer))
2019-08-18 06:30:34 -04:00
(pair
(key)
(integer))))
2019-08-18 06:30:34 -04:00
(pair
(key)
(inline_table
(pair
(dotted_key
(key)
(key))
2019-08-22 05:22:58 -04:00
(string)))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array of tables - basic
================================================================================
[[products]]
name = "Hammer"
sku = 738594937
[[products]]
[[products]]
name = "Nail"
sku = 284758393
color = "gray"
--------------------------------------------------------------------------------
(document
(table_array_element
(key)
(pair
(key)
(string))
(pair
(key)
(integer)))
(table_array_element
2019-08-22 05:22:58 -04:00
(key))
(table_array_element
(key)
(pair
(key)
(string))
(pair
(key)
(integer))
(pair
(key)
(string))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array of tables - nested arrays of tables
================================================================================
[[fruit]]
name = "apple"
[fruit.physical]
color = "red"
shape = "round"
[[fruit.variety]]
name = "red delicious"
[[fruit.variety]]
name = "granny smith"
[[fruit]]
name = "banana"
[[fruit.variety]]
name = "plantain"
--------------------------------------------------------------------------------
(document
(table_array_element
(key)
(pair
(key)
(string)))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(key)
(key))
(pair
(key)
(string))
(pair
(key)
(string)))
(table_array_element
2019-08-18 06:30:34 -04:00
(dotted_key
(key)
(key))
(pair
(key)
(string)))
(table_array_element
2019-08-18 06:30:34 -04:00
(dotted_key
(key)
(key))
(pair
(key)
(string)))
(table_array_element
(key)
(pair
(key)
(string)))
(table_array_element
2019-08-18 06:30:34 -04:00
(dotted_key
(key)
(key))
(pair
(key)
(string))))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array of tables - append to statically defined array (semantically INVALID)
================================================================================
# INVALID TOML DOC
fruit = []
[[fruit]] # Not allowed
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(pair
(key)
(array))
(table_array_element
(key)
(comment)))
2019-08-18 06:30:34 -04:00
================================================================================
VALID - array of tables - append to table (semantically INVALID)
================================================================================
# INVALID TOML DOC
[[fruit]]
name = "apple"
[[fruit.variety]]
name = "red delicious"
# This table conflicts with the previous table
[fruit.variety]
name = "granny smith"
--------------------------------------------------------------------------------
(document
2019-08-18 06:30:34 -04:00
(comment)
(table_array_element
(key)
(pair
(key)
(string)))
(table_array_element
2019-08-18 06:30:34 -04:00
(dotted_key
(key)
(key))
(pair
(key)
(string))
(comment))
2019-08-18 06:30:34 -04:00
(table
(dotted_key
(key)
(key))
(pair
(key)
(string))))