Skip to content

Commit 0448b91

Browse files
committed
dsl/types: add String+Underlying methods to Struct
1 parent 631ca07 commit 0448b91

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dsl/types/type_impl.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ func (*Array) String() string { return "" }
88
func (*Slice) String() string { return "" }
99
func (*Pointer) String() string { return "" }
1010
func (*Interface) String() string { return "" }
11+
func (*Struct) String() string { return "" }
1112

1213
func (*Array) Underlying() Type { return nil }
1314
func (*Slice) Underlying() Type { return nil }
1415
func (*Pointer) Underlying() Type { return nil }
1516
func (*Interface) Underlying() Type { return nil }
17+
func (*Struct) Underlying() Type { return nil }

0 commit comments

Comments
 (0)