eric6/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/ComplexityChecker.py

changeset 8218
7c09585bd960
parent 8207
d359172d11be
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
185 """ 185 """
186 def __init__(self): 186 def __init__(self):
187 """ 187 """
188 Constructor 188 Constructor
189 """ 189 """
190 super(LineComplexityVisitor, self).__init__() 190 super().__init__()
191 self.__count = {} 191 self.__count = {}
192 192
193 def visit(self, node): 193 def visit(self, node):
194 """ 194 """
195 Public method to recursively visit all the nodes and add up the 195 Public method to recursively visit all the nodes and add up the

eric ide

mercurial