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 |