Commit graph

5 commits

Author SHA1 Message Date
Ika a0cd384b98 feat: rename root with file 2019-08-20 15:01:47 +08:00
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
Ika e2b28db714
fix: disallow invalid whitespaces between scalar components (#1) 2019-08-20 09:30:20 +08:00
Ika 46de5998d4 refactor: replace external tokens with internal ones 2019-08-19 23:58:20 +08:00
Ika 5acac3958f feat: initial implementation 2019-08-18 18:30:34 +08:00