mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-17017 Comments with greater indent are still included inside suite
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
def f():
|
||||
def g():
|
||||
pass
|
||||
# comment
|
||||
@@ -1,25 +0,0 @@
|
||||
PyFile:CommentAtTheEndOfBlock.py
|
||||
PyFunction('f')
|
||||
PsiElement(Py:DEF_KEYWORD)('def')
|
||||
PsiWhiteSpace(' ')
|
||||
PsiElement(Py:IDENTIFIER)('f')
|
||||
PyParameterList
|
||||
PsiElement(Py:LPAR)('(')
|
||||
PsiElement(Py:RPAR)(')')
|
||||
PsiElement(Py:COLON)(':')
|
||||
PsiWhiteSpace('\n ')
|
||||
PyStatementList
|
||||
PyFunction('g')
|
||||
PsiElement(Py:DEF_KEYWORD)('def')
|
||||
PsiWhiteSpace(' ')
|
||||
PsiElement(Py:IDENTIFIER)('g')
|
||||
PyParameterList
|
||||
PsiElement(Py:LPAR)('(')
|
||||
PsiElement(Py:RPAR)(')')
|
||||
PsiElement(Py:COLON)(':')
|
||||
PsiWhiteSpace('\n ')
|
||||
PyStatementList
|
||||
PyPassStatement
|
||||
PsiElement(Py:PASS_KEYWORD)('pass')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# comment')
|
||||
@@ -1,7 +0,0 @@
|
||||
def foo():
|
||||
def bar():
|
||||
def baz():
|
||||
pass
|
||||
# baz
|
||||
# bar
|
||||
# foo
|
||||
@@ -1,8 +0,0 @@
|
||||
def foo():
|
||||
def bar():
|
||||
def baz():
|
||||
pass
|
||||
# baz
|
||||
# bar
|
||||
# foo
|
||||
pass
|
||||
@@ -0,0 +1,9 @@
|
||||
def foo():
|
||||
def bar():
|
||||
def baz():
|
||||
pass
|
||||
# baz 1
|
||||
# baz 2
|
||||
# baz 3
|
||||
# bar
|
||||
# foo
|
||||
+7
-3
@@ -1,4 +1,4 @@
|
||||
PyFile:RaggedTrailingComments.py
|
||||
PyFile:TrailingBlockCommentsAtEndOfFile.py
|
||||
PyFunction('foo')
|
||||
PsiElement(Py:DEF_KEYWORD)('def')
|
||||
PsiWhiteSpace(' ')
|
||||
@@ -32,8 +32,12 @@ PyFile:RaggedTrailingComments.py
|
||||
PyPassStatement
|
||||
PsiElement(Py:PASS_KEYWORD)('pass')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 1')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 2')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 3')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# bar')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# foo')
|
||||
@@ -0,0 +1,10 @@
|
||||
def foo():
|
||||
def bar():
|
||||
def baz():
|
||||
pass
|
||||
# baz 1
|
||||
# baz 2
|
||||
# baz 3
|
||||
# bar
|
||||
# foo
|
||||
pass
|
||||
+7
-3
@@ -1,4 +1,4 @@
|
||||
PyFile:RaggedTrailingCommentsWithTrailingStatement.py
|
||||
PyFile:TrailingBlockCommentsFollowedByStatement.py
|
||||
PyFunction('foo')
|
||||
PsiElement(Py:DEF_KEYWORD)('def')
|
||||
PsiWhiteSpace(' ')
|
||||
@@ -32,8 +32,12 @@ PyFile:RaggedTrailingCommentsWithTrailingStatement.py
|
||||
PyPassStatement
|
||||
PsiElement(Py:PASS_KEYWORD)('pass')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 1')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 2')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# baz 3')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# bar')
|
||||
PsiWhiteSpace('\n ')
|
||||
PsiComment(Py:END_OF_LINE_COMMENT)('# foo')
|
||||
Reference in New Issue
Block a user