mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 00:40:28 +07:00
We had to switch to stack-based parsing contexts in order to be able to use context-sensitive token filtering for 'async'. Also this commit fixes the highlighting annotator issue with blinking names of the functions and blinking 'async'.
16 lines
157 B
Python
16 lines
157 B
Python
async def foo(x, y):
|
|
pass
|
|
|
|
async def foo_nested():
|
|
pass
|
|
|
|
|
|
async = 10
|
|
|
|
|
|
def bar():
|
|
print(async)
|
|
|
|
async def bar_nested():
|
|
pass
|