parser.py | 226 def exit_counts(self): member in class:CodeParser 233 exit_counts = {} 244 if l1 not in exit_counts: 245 exit_counts[l1] = 0 246 exit_counts[l1] += 1 251 if l in exit_counts: 252 exit_counts[l] -= 1 254 return exit_counts 255 exit_counts = expensive(exit_counts) variable in class:CodeParser [all...] |