Source code for angr.knowledge_plugins.comments

from .plugin import KnowledgeBasePlugin


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