diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-04-04 12:00:24 +0200 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-04 06:00:24 -0400 |
| commit | f8f561135016d23c0bb4ee75b6d6e54eda9daed8 (patch) | |
| tree | 9eed74199dd57d67be5c99b7a818c7de6b48219d /toml/testdata | |
| parent | 0ff0ba2b32113e4aa18fe9f35e0f9068cce3ba08 (diff) | |
TOML: Full support of inline table (denoland/deno_std#320)
Original: https://github.com/denoland/deno_std/commit/d16072a33439749f2e12ed85954c7721161db8cc
Diffstat (limited to 'toml/testdata')
| -rw-r--r-- | toml/testdata/inlineTable.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toml/testdata/inlineTable.toml b/toml/testdata/inlineTable.toml index 1a7e55c52..203cb16db 100644 --- a/toml/testdata/inlineTable.toml +++ b/toml/testdata/inlineTable.toml @@ -1,4 +1,7 @@ [inlinetable] name = { first = "Tom", last = "Preston-Werner" } point = { x = 1, y = 2 } -animal = { type = { name = "pug" } }
\ No newline at end of file +dog = { type = { name = "pug" } } +animal.as.leaders = "tosin" +"tosin.abasi" = "guitarist" +nile = { derek.roddy = "drummer", also = { malevolant.creation = { drum.kit = "Tama" } } }
\ No newline at end of file |
