annotate python/c3/__init__.py @ 150:4ae0e02599de

Added type check start and analyze phase
author Windel Bouwman
date Fri, 01 Mar 2013 16:53:22 +0100
parents 91af0e40f868
children afc8c0207984
rev   line source
150
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
1
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
2 # Convenience:
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
3
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
4 from .parser import Parser
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
5 from .semantics import Semantics
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
6 from .typecheck import TypeChecker
4ae0e02599de Added type check start and analyze phase
Windel Bouwman
parents: 146
diff changeset
7 from .analyse import Analyzer
146
91af0e40f868 Moved several files
Windel Bouwman
parents:
diff changeset
8
91af0e40f868 Moved several files
Windel Bouwman
parents:
diff changeset
9