예제 #1
0
파일: lexical.py 프로젝트: minopret/topdown
 def __init__(self, category, dictionary):
     Symbol.__init__(self, category, dictionary, self)
     Scope.__init__(self)
예제 #2
0
 def __init__(self, mother, children):
     Scope.__init__(self)
     self.set_mother(mother)
     self.set_children(children)