Source code for angr.knowledge_plugins.comments
from __future__ import annotations
from .plugin import KnowledgeBasePlugin
[docs]
class Comments(KnowledgeBasePlugin, dict):
"""
Tracks comments via a Dict of Address -> Text
"""
KnowledgeBasePlugin.register_default("comments", Comments)