Commit 265bbaac authored by Stefan Behnel's avatar Stefan Behnel

move qualname calculation transform a little later in the pipeline

parent aa62e95d
...@@ -194,11 +194,11 @@ def create_pipeline(context, mode, exclude_classes=()): ...@@ -194,11 +194,11 @@ def create_pipeline(context, mode, exclude_classes=()):
_check_c_declarations, _check_c_declarations,
InlineDefNodeCalls(context), InlineDefNodeCalls(context),
AnalyseExpressionsTransform(context), AnalyseExpressionsTransform(context),
CalculateQualifiedNamesTransform(context),
FindInvalidUseOfFusedTypes(context), FindInvalidUseOfFusedTypes(context),
CreateClosureClasses(context), ## After all lookups and type inference CreateClosureClasses(context), ## After all lookups and type inference
ExpandInplaceOperators(context), ExpandInplaceOperators(context),
OptimizeBuiltinCalls(context), ## Necessary? OptimizeBuiltinCalls(context), ## Necessary?
CalculateQualifiedNamesTransform(context),
ConsolidateOverflowCheck(context), ConsolidateOverflowCheck(context),
IterationTransform(context), IterationTransform(context),
SwitchTransform(), SwitchTransform(),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment