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

toml: rename ast.Node -> ast.Value (#11974)

This commit is contained in:
Larpon
2021-09-25 19:31:02 +02:00
committed by GitHub
parent 80c15607da
commit 13b2aa701c
6 changed files with 111 additions and 103 deletions

View File

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