angr.knowledge_plugins.comments 源代码
from __future__ import annotations
from .plugin import KnowledgeBasePlugin
[文档]
class Comments(KnowledgeBasePlugin, dict):
"""
Tracks comments via a Dict of Address -> Text
"""
KnowledgeBasePlugin.register_default("comments", Comments)