作成して関数で使用したオブジェクトに問題があります。
class environnement:
def __init__(self, n, dic={}, listr=[], listf=[]):
self.taille=n
self.reg=dict(dic)
self.raccess=listr
self.faccess=listf
最初に関数内に環境を作成し、compilProgram
次に compilInstruction
この環境で使用します。
def compilProgram(fichierSortie, nbrRegDispo, AST):
DICOFUN={}
for elt in AST.children:
if elt.type=='fonctionDef':
DICOFUN[elt.leaf]=elt.children
continue
else :
pass
env=environnement(nbrRegDispo)
print(type(env))
compteurLabel=0
for elt in AST.children:
if elt.type!='fonctionDef':
(env, compteurLabel)=compilInstruction(env, fichierSortie, elt, compteurLabel)
印刷物は、私がそれを与える前にcompilProgram
何であるかをチェックすることです(私は問題を抱えているため)。env
compilInstruction
def compilInstruction(env, fichierSortie, instruction,compteurLabel):
print(type(env))
envInterne=environnement(env.taille, env.reg, env.raccess, env.faccess)
...
私は他の多くの方法でコピーを試みましenv
たが、問題はそれが原因ではないようです。compilProgram
これが私が適切な議論をしようとしたときに私が得るものです:
<class 'Environnement.environnement'> (this is the print from compilProgram)
<class 'Environnement.environnement'> (this is the print from compilInstruction)
<class 'NoneType'> (this again comes from the print in compilInstruction)
...
AttributeError: 'NoneType' object has no attribute 'taille'
なぜプリントインcompilInstruction
が2回実行さenv
れ、2回の実行の間に消えるのですか?