matklad / tom

tom: a format-preserving TOML parser in Rust
Apache License 2.0
38 stars 2 forks source link

Complete validation #14

Open matklad opened 6 years ago

matklad commented 6 years ago

We run some checks in our validator:

https://github.com/matklad/tom/blob/5a1b98e0b0b13529a917a9c2212f6813a9eb1948/src/validator.rs#L11-L35

However, we don't verify a bunch of stuff. For example, we don't check that tables are not reopened. We should add ALL THE CHECKS.

This might share code with #13 as well.