angr.knowledge_plugins.comments 源代码

from __future__ import annotations
from .plugin import KnowledgeBasePlugin


[文档] class Comments(KnowledgeBasePlugin, dict): """ Tracks comments via a Dict of Address -> Text """
[文档] def copy(self): o = Comments(self._kb) o.update(self) return o
KnowledgeBasePlugin.register_default("comments", Comments)