Beispiel #1
0
    def __init__(self, project, options):
        self.parrot_root       = options.parrot_root
        self.instruction_count = options.instructions
        self.ignore_blacklist  = options.ignore_blacklist
        self.opfunc_gen        = OpfuncGenerator()
        self.arg_gen           = ArgGenerator(self.parrot_root, self.ignore_blacklist)

        self.opfunc_gen.populateOpfuncList(self.parrot_root, self.ignore_blacklist)

        ProjectAgent.__init__(self, project, "pir_source")
        WriteCode.__init__(self)
Beispiel #2
0
 def __init__(self):
     WriteCode.__init__(self)
     self.comment_column = 40
Beispiel #3
0
 def __init__(self):
     WriteCode.__init__(self)
     self.comment_column = 40
Beispiel #4
0
 def __init__(self):
     WriteCode.__init__(self)
     self.includes = []
     self.gnu_source = False
     self.functions = {}
     self.functions_list = []
Beispiel #5
0
 def __init__(self):
     WriteCode.__init__(self)
     self.includes = []
     self.gnu_source = False
     self.functions = {}
     self.functions_list = []