Lib.Krakatau.ssa.functionbase.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
class SSAFunctionBase(object):
def __init__(self, parent, arguments):
self.parent = parent
self.params = list(arguments)
def replaceVars(self, rdict):
self.params = [rdict.get(x,x) for x in self.params]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy