File: __init__.py

package info (click to toggle)
synopsis 0.8.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,112 kB
  • ctags: 12,996
  • sloc: cpp: 34,254; ansic: 33,620; python: 10,975; sh: 7,261; xml: 6,369; makefile: 773; asm: 445
file content (16 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Package for linking modules.

There is much that can be done to an AST to manipulate it. This includes:
merging multiple AST trees, mapping links to different languages, pruning the
tree, mapping names to different scopes, and dealing with comment prefixes and
groupings."""

from Linker import *
from ScopeStripper import *
from NameMapper import *
from Comments import *
from XRefCompiler import *
from EmptyModuleRemover import *
from AccessRestrictor import *
from TypeMapper import *
from LanguageMapper import *