```python >>> var_type, _ = bv.parse_type_string("""struct { ... uint32_t *blah; ... uint32_t *blah1; ... uint32_t *blah2; ... uint32_t *blah3; ... } Apple""") >>> bv.define_user_type('Apple', var_type) >>> x = StructuredDataView(bv, 'Apple', here) >>> print(x) struct Apple 0x140018b90 { +0 uint32_t* blah = 0000000000000001 +8 uint32_t* blah1 = 0001f48800000000 +10 uint32_t* blah2 = 00018b9000018ee0 +18 uint32_t* blah3 = 0000000000000000 } >>> StructuredDataView._members OrderedDict([('blah', <uint32_t* blah, offset 0x0>), ('blah1', <uint32_t* blah1, offset 0x8>), ('blah2', <uint32_t* blah2, offset 0x10>), ('blah3', <uint32_t* blah3, offset 0x18>)]) ``` 2019-06-10regexp fail included unintended parametersJordan Wiens 2019-06-10more updates for the undocumented properties changeset -- specifically ↵Jordan Wiens revert on LinearDisassemglyLine so third-party plugins that leverage lineardisassemblylines can work again 2019-06-10re-enable documentation for name and byte_name on types.QualifiedNameJordan Wiens 2019-06-09remove two breaking changesJordan Wiens 2019-06-08final refactor for missing parametersJordan Wiens 2019-06-08documentation generation settings updateJordan Wiens 2019-06-07Fix #1338KyleMiles 2019-06-07Fix 1360KyleMiles 2019-06-06Rename Function::AddUserCodeReference and Function::RemoveUserCodeReferencerollsafe 2019-06-06Add UI dialog for adding user referencesrollsafe 2019-06-06Display from and to xrefs in xref windowrollsafe 2019-06-06Fix GetCodeReferencesFromrollsafe 2019-06-05Add BinaryView.get_code_refs_fromrollsafe 2019-05-31minor documentation cleanupsJordan Wiens 2019-05-31Sort dominators so test results are deterministicGlenn Smith 2019-05-31Add test binary for Fat Mach-OGlenn Smith 2019-05-31Fix Python3 Failing Unit TestKyleMiles 2019-05-31Update gitignorerollsafe