slither.core.context.context

 1from collections import defaultdict
 2from typing import Dict
 3
 4
 5class Context:  # pylint: disable=too-few-public-methods
 6    def __init__(self) -> None:
 7        super().__init__()
 8        self._context: Dict = {"MEMBERS": defaultdict(None)}
 9
10    @property
11    def context(self) -> Dict:
12        """
13        Dict used by analysis
14        """
15        return self._context
class Context:
 6class Context:  # pylint: disable=too-few-public-methods
 7    def __init__(self) -> None:
 8        super().__init__()
 9        self._context: Dict = {"MEMBERS": defaultdict(None)}
10
11    @property
12    def context(self) -> Dict:
13        """
14        Dict used by analysis
15        """
16        return self._context
context: Dict
11    @property
12    def context(self) -> Dict:
13        """
14        Dict used by analysis
15        """
16        return self._context

Dict used by analysis