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

toml: improve comment support (#12305)

This commit is contained in:
Larpon
2021-10-26 15:58:05 +02:00
committed by GitHub
parent 52df19ef61
commit 9a3967bd7d
5 changed files with 49 additions and 18 deletions

View File

@@ -11,7 +11,8 @@ pub struct Root {
pub:
input input.Config // User input configuration
pub mut:
table Value
comments []Comment
table Value
// errors []errors.Error // all the checker errors in the file
}