objdiff-wasm 3.0.0-beta.1 → 3.0.0-beta.4

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.
@@ -275,4 +275,4 @@
275
275
  ]
276
276
  }
277
277
  ]
278
- }
278
+ }
@@ -50,6 +50,7 @@ export interface SymbolFlags {
50
50
  hidden?: boolean,
51
51
  hasExtra?: boolean,
52
52
  sizeInferred?: boolean,
53
+ ignored?: boolean,
53
54
  }
54
55
  export interface SymbolDisplay {
55
56
  name: string,
Binary file
package/dist/objdiff.js CHANGED
@@ -639,7 +639,7 @@ function displaySymbol(arg0, arg1) {
639
639
  default:
640
640
  throw new TypeError('invalid variant discriminant for option');
641
641
  }
642
- if ((4294967168 & dataView(memory0).getUint8(ret + 52, true)) !== 0) throw new TypeError('flags have extraneous bits set');
642
+ if ((4294967040 & dataView(memory0).getUint8(ret + 52, true)) !== 0) throw new TypeError('flags have extraneous bits set');
643
643
  var flags8 = {
644
644
  global: Boolean(1 & dataView(memory0).getUint8(ret + 52, true)),
645
645
  local: Boolean(2 & dataView(memory0).getUint8(ret + 52, true)),
@@ -647,7 +647,8 @@ function displaySymbol(arg0, arg1) {
647
647
  common: Boolean(8 & dataView(memory0).getUint8(ret + 52, true)),
648
648
  hidden: Boolean(16 & dataView(memory0).getUint8(ret + 52, true)),
649
649
  hasExtra: Boolean(32 & dataView(memory0).getUint8(ret + 52, true)),
650
- sizeInferred: Boolean(64 & dataView(memory0).getUint8(ret + 52, true))
650
+ sizeInferred: Boolean(64 & dataView(memory0).getUint8(ret + 52, true)),
651
+ ignored: Boolean(128 & dataView(memory0).getUint8(ret + 52, true))
651
652
  };
652
653
  let variant9;
653
654
  switch(dataView(memory0).getUint8(ret + 56, true)){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "objdiff-wasm",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.4",
4
4
  "description": "A local diffing tool for decompilation projects.",
5
5
  "author": {
6
6
  "name": "Luke Street",