objdiff-wasm 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config-schema.json +22 -0
- package/dist/objdiff.core.wasm +0 -0
- package/package.json +1 -1
package/dist/config-schema.json
CHANGED
|
@@ -82,6 +82,27 @@
|
|
|
82
82
|
"name": "Space between args",
|
|
83
83
|
"description": "Adds a space between arguments in the diff output."
|
|
84
84
|
},
|
|
85
|
+
{
|
|
86
|
+
"id": "showSymbolSizes",
|
|
87
|
+
"type": "choice",
|
|
88
|
+
"default": "off",
|
|
89
|
+
"name": "Show symbol sizes",
|
|
90
|
+
"description": "Shows symbol sizes in the symbol view.",
|
|
91
|
+
"items": [
|
|
92
|
+
{
|
|
93
|
+
"value": "off",
|
|
94
|
+
"name": "Off"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"value": "hex",
|
|
98
|
+
"name": "Hex"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"value": "decimal",
|
|
102
|
+
"name": "Decimal"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
85
106
|
{
|
|
86
107
|
"id": "combineDataSections",
|
|
87
108
|
"type": "boolean",
|
|
@@ -296,6 +317,7 @@
|
|
|
296
317
|
"properties": [
|
|
297
318
|
"functionRelocDiffs",
|
|
298
319
|
"demangler",
|
|
320
|
+
"showSymbolSizes",
|
|
299
321
|
"spaceBetweenArgs",
|
|
300
322
|
"combineDataSections",
|
|
301
323
|
"combineTextSections"
|
package/dist/objdiff.core.wasm
CHANGED
|
Binary file
|