aboutsummaryrefslogtreecommitdiffstats
path: root/jsre/pretty.go
diff options
context:
space:
mode:
Diffstat (limited to 'jsre/pretty.go')
-rw-r--r--jsre/pretty.go13
1 files changed, 11 insertions, 2 deletions
diff --git a/jsre/pretty.go b/jsre/pretty.go
index 99aa9b33e..64f0a95c9 100644
--- a/jsre/pretty.go
+++ b/jsre/pretty.go
@@ -202,8 +202,17 @@ func (ctx ppctx) doOwnProperties(v otto.Value, f func(string)) {
Object, _ := ctx.vm.Object("Object")
rv, _ := Object.Call("getOwnPropertyNames", v)
gv, _ := rv.Export()
- for _, v := range gv.([]interface{}) {
- f(v.(string))
+ switch gv := gv.(type) {
+ case []interface{}:
+ for _, v := range gv {
+ f(v.(string))
+ }
+ case []string:
+ for _, v := range gv {
+ f(v)
+ }
+ default:
+ panic(fmt.Errorf("Object.getOwnPropertyNames returned unexpected type %T", gv))
}
}