Added basic ToString method to TypeSection

This commit is contained in:
Sasha Koshka
2022-08-18 17:45:34 -04:00
parent 5c2a7aeb07
commit 9fd3fb1263
2 changed files with 26 additions and 3 deletions

View File

@@ -176,8 +176,9 @@ type TypeSection struct {
location file.Location
name string
what Type
permission types.Permission
what Type
permission types.Permission
defaultValue Argument
// this should be 1 dimensional for now.
members map[string] TypeMember
members map[string] TypeMember
}