Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/emscripten-core/emscripten
/ read_string
Method
read_string
tools/webassembly.py:233–235 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
231
return
read_sleb(self.buf)
232
233
def
read_string(self):
234
size = self.read_uleb()
235
return
self.buf.read(size).decode(
'utf-8'
)
236
237
def
read_limits(self):
238
flags = self.read_byte()
Callers
9
sections
Method · 0.95
parse_dylink_section
Method · 0.95
get_exports
Method · 0.95
get_imports
Method · 0.95
get_function_names
Method · 0.95
get_target_features
Method · 0.95
get_sourceMappingURL
Method · 0.95
read_name_section
Function · 0.80
is_wasm_dylib
Function · 0.80
Calls
2
read_uleb
Method · 0.95
read
Method · 0.45
Tested by
no test coverage detected