File: Synopsis/Processors/__init__.py
 1"""ASG processors.
 2
 3There is much that can be done to an ASG to manipulate it. This includes:
 4merging multiple ASG trees, mapping links to different languages, pruning the
 5tree, mapping names to different scopes, and dealing with comment prefixes and
 6groupings."""
 7
 8from Linker import *
 9from ScopeStripper import *
10from NameMapper import *
11from MacroFilter import *
12from ModuleFilter import *
13from SXRCompiler import *
14from AccessRestrictor import *
15from TypedefFolder import *
16from TypeMapper import *
17from TemplateLinker import TemplateLinker
18import Comments
19