Commit 10d51a67 authored by Stefan Behnel's avatar Stefan Behnel

fix crash when looking up closure names in OptimizeBuiltinCalls transform...

fix crash when looking up closure names in OptimizeBuiltinCalls transform (after running CreateClosureClasses transform)
parent caea47a4
......@@ -195,9 +195,9 @@ def create_pipeline(context, mode, exclude_classes=()):
InlineDefNodeCalls(context),
AnalyseExpressionsTransform(context),
FindInvalidUseOfFusedTypes(context),
CreateClosureClasses(context), ## After all lookups and type inference
ExpandInplaceOperators(context),
OptimizeBuiltinCalls(context), ## Necessary?
CreateClosureClasses(context), ## After all lookups and type inference
CalculateQualifiedNamesTransform(context),
ConsolidateOverflowCheck(context),
IterationTransform(context),
......
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