Skip to content

Commit

Permalink
add commented-out call to name_mangler
Browse files Browse the repository at this point in the history
we don't want to use this yet, but this comment
will hopefully make it easier to complete this
functionality later
  • Loading branch information
dellard committed Jun 22, 2017
1 parent 061212c commit 36ee63e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/python/pyqgl2/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from pyqgl2.eval import EvalTransformer, SimpleEvaluator
from pyqgl2.flatten import Flattener
from pyqgl2.importer import NameSpaces, add_import_from_as
from pyqgl2.inline import Inliner
from pyqgl2.inline import Inliner, name_mangler
from pyqgl2.sequences import SequenceExtractor, get_sequence_function


Expand Down Expand Up @@ -196,6 +196,11 @@ def compile_function(filename,

ptree1 = ptree

# THE NAME MANGLER IS INCOMPLETE: see inline.py for more info.
# It shouldn't be use right now.
#
# ptree1 = name_mangler(ptree1)

# We may need to iterate over the inlining processes a few times,
# because inlining may expose new things to inline.
#
Expand Down

0 comments on commit 36ee63e

Please sign in to comment.