tree-sitter-toml/corpus
Ika a3812033af
feat: flatten table/table-array structure (#2)
Input:

```toml
[table]
key = "value"
```

Output:

```sh
# before
(root
  (table
    (key)
    (pair (key) (string)))

# after
(root
  (table (key))
  (pair (key) (string)))
```
2019-08-20 14:59:19 +08:00
..
custom.txt feat: flatten table/table-array structure (#2) 2019-08-20 14:59:19 +08:00
spec.txt feat: flatten table/table-array structure (#2) 2019-08-20 14:59:19 +08:00