todo: inline tables

This commit is contained in:
Thomas Pelletier
2021-03-08 21:59:43 -05:00
parent a1c9b661b4
commit 93a74fca35
3 changed files with 30 additions and 17 deletions
+17
View File
@@ -121,6 +121,23 @@ func (u *unmarshaler) ArrayTableEnd() {
u.arrayTableKey = u.arrayTableKey[:0]
}
func (u *unmarshaler) InlineTableBegin() {
if u.skipping() || u.err != nil {
return
}
// TODO
}
func (u *unmarshaler) InlineTableEnd() {
if u.skipping() || u.err != nil {
return
}
// TODO
}
func (u *unmarshaler) KeyValBegin() {
if u.skipKeyValCount > 0 {
u.skipKeyValCount++