소스 검색

Fix bug in parser for Python classes.

tags/v1.0^2
Ben Kurtovic 10 년 전
부모
커밋
05811c7c1b
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      bitshift/parser/python.py

+ 3
- 1
bitshift/parser/python.py 파일 보기

@@ -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)



불러오는 중...
취소
저장