1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

toml: support multi-level map keys in arrays-of-tables (#12641)

This commit is contained in:
Larpon
2021-12-02 10:19:45 +01:00
committed by GitHub
parent ebfacca252
commit 5ab91dd471
5 changed files with 51 additions and 4 deletions

View File

@@ -0,0 +1 @@
{ "albums": [ { "songs": [ { }, { } ] } ], "artists": [ { "home": { "address": { } } } ] }

View File

@@ -0,0 +1,6 @@
[[ albums ]]
[[ albums.songs ]]
[[ albums.songs ]]
[[ artists ]]
[ artists.home.address ]