Coverage for wasmtime/bindgen/generated/imports/stderr.py: 88%

8 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-02-20 16:25 +0000

1from ..imports import streams 

2from abc import abstractmethod 

3from typing import Protocol 

4 

5OutputStream = streams.OutputStream 

6class HostStderr(Protocol): 

7 @abstractmethod 

8 def get_stderr(self) -> OutputStream: 

9 raise NotImplementedError 

10