mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
36 lines
309 B
Python
36 lines
309 B
Python
|
|
if (
|
||
|
|
True
|
||
|
|
or 1
|
||
|
|
or False
|
||
|
|
):
|
||
|
|
pass
|
||
|
|
|
||
|
|
if (
|
||
|
|
True
|
||
|
|
or 1
|
||
|
|
or False):
|
||
|
|
pass
|
||
|
|
|
||
|
|
if (True
|
||
|
|
or 1
|
||
|
|
or False):
|
||
|
|
pass
|
||
|
|
|
||
|
|
while (
|
||
|
|
False
|
||
|
|
or 1
|
||
|
|
or False
|
||
|
|
):
|
||
|
|
pass
|
||
|
|
|
||
|
|
while (
|
||
|
|
False
|
||
|
|
or 1
|
||
|
|
or False):
|
||
|
|
pass
|
||
|
|
|
||
|
|
while (False
|
||
|
|
or 1
|
||
|
|
or False):
|
||
|
|
pass
|