PY-20003 Fixed: Breadcrumbs for Python files

Introduce PyBreadcrumbsInfoProvider which supports:
classes and functions (incl. async) definitions,
lambdas, try-except-else-finally, if-elif-else,
for-else (incl. async), while-else, with and
key-value statements
This commit is contained in:
Semyon Proshev
2016-12-20 18:21:50 +03:00
committed by Semyon Proshev
parent f54070028a
commit cde66f2f64
61 changed files with 557 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
async def foo():
async for i in range(10):
print(<caret>i)