Explorar el Código

Fix bug in parser for Python classes.

tags/v1.0^2
Ben Kurtovic hace 10 años
padre
commit
05811c7c1b
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      bitshift/parser/python.py

+ 3
- 1
bitshift/parser/python.py Ver fichero

@@ -134,7 +134,9 @@ class _CachedWalker(ast.NodeVisitor):
start_line, start_col, end_line, end_col = self.block_position(node)

pos = (start_line, start_col, end_line, end_col)
self.accum['classes'][node.name] = pos
if node.name not in self.accum['classes']:
self.accum['classes'][node.name] = {'assignments': [], 'uses': []}
self.accum['classes'][node.name]['assignments'].append(pos)

self.generic_visit(node)



Cargando…
Cancelar
Guardar