summaryrefslogtreecommitdiff
path: root/spew/format.go
diff options
context:
space:
mode:
Diffstat (limited to 'spew/format.go')
-rw-r--r--spew/format.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/spew/format.go b/spew/format.go
index f9b91ae..70785fa 100644
--- a/spew/format.go
+++ b/spew/format.go
@@ -256,7 +256,14 @@ func (f *formatState) format(v reflect.Value) {
case reflect.Complex128:
printComplex(f.fs, v.Complex(), 64)
- case reflect.Array, reflect.Slice:
+ case reflect.Slice:
+ if v.IsNil() {
+ f.fs.Write(nilAngleBytes)
+ break
+ }
+ fallthrough
+
+ case reflect.Array:
f.fs.Write(openBracketBytes)
f.depth++
if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) {