Commit ffc2c634 authored by yann300's avatar yann300

display struct full type

parent 557527d2
...@@ -35,7 +35,7 @@ function extractData (item, parent, key) { ...@@ -35,7 +35,7 @@ function extractData (item, parent, key) {
ret.length = item.length ret.length = item.length
} else if (item.type.indexOf('struct') === 0) { } else if (item.type.indexOf('struct') === 0) {
ret.children = item.value || [] ret.children = item.value || []
ret.self = 'Struct' + '{' + Object.keys(ret.children).length + '}' ret.self = item.type
ret.isStruct = true ret.isStruct = true
} else { } else {
ret.children = [] ret.children = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment