(self)
| 630 | |
| 631 | @memoize |
| 632 | def get_sourceMappingURL(self): |
| 633 | section = self.get_custom_section('sourceMappingURL') |
| 634 | if not section: |
| 635 | return '' |
| 636 | self.seek(section.offset) |
| 637 | self.read_string() # 'sourceMappingURL' |
| 638 | return self.read_string() |
| 639 | |
| 640 | |
| 641 | def parse_dylink_section(wasm_file): |
no test coverage detected