...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/inline-table/empty.json

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/inline-table

     1{
     2  "empty1": {},
     3  "empty2": {},
     4  "empty_in_array": [
     5    {
     6      "not_empty": {
     7        "type": "integer",
     8        "value": "1"
     9      }
    10    },
    11    {}
    12  ],
    13  "empty_in_array2": [
    14    {},
    15    {
    16      "not_empty": {
    17        "type": "integer",
    18        "value": "1"
    19      }
    20    }
    21  ],
    22  "many_empty": [
    23    {},
    24    {},
    25    {}
    26  ],
    27  "nested_empty": {
    28    "empty": {}
    29  }
    30}

View as plain text