Home
last modified time | relevance | path

Searched refs:async_def_indent (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/lib2to3/pgen2/
Dtokenize.py359 async_def_indent = 0
429 if async_def and async_def_indent >= indents[-1]:
432 async_def_indent = 0
436 if async_def and async_def_nl and async_def_indent >= indents[-1]:
439 async_def_indent = 0
522 async_def_indent = indents[-1]
/third_party/python/Parser/
Dtokenizer.h82 int async_def_indent; /* Indentation level of the outermost 'async def'. */ member
Dtokenizer.c86 tok->async_def_indent = 0; in tok_new()
1476 && tok->async_def_indent >= tok->indent) in tok_get()
1479 tok->async_def_indent = 0; in tok_get()
1645 tok->async_def_indent = tok->indent; in tok_get()