Exemplo n.º 1
0
    def dumpActiveTraces(self):
        Tracing.printSeparator()
        Tracing.printLine("Active are:")
        for variable, _version in sorted(self.variable_actives.iteritems()):
            self.getVariableCurrentTrace(variable).dump()

        Tracing.printSeparator()
Exemplo n.º 2
0
    def dumpActiveTraces(self):
        Tracing.printSeparator()
        Tracing.printLine("Active are:")
        for variable, _version in sorted(self.variable_actives.iteritems()):
            self.getVariableCurrentTrace(variable).dump()

        Tracing.printSeparator()
Exemplo n.º 3
0
    def dump(self, level=0):
        Tracing.printIndented(level, self)
        Tracing.printSeparator(level)

        for visitable in self.getVisitableNodes():
            visitable.dump(level + 1)

        Tracing.printSeparator(level)
Exemplo n.º 4
0
    def dump(self, level = 0):
        Tracing.printIndented(level, self)
        Tracing.printSeparator(level)

        for visitable in self.getVisitableNodes():
            visitable.dump(level + 1)

        Tracing.printSeparator(level)
Exemplo n.º 5
0
 def dumpTraces(self):
     Tracing.printSeparator()
     self.parent.dumpTraces()
     Tracing.printSeparator()
Exemplo n.º 6
0
 def dumpTraces(self):
     Tracing.printSeparator()
     self.parent.dumpTraces()
     Tracing.printSeparator()