mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
that is the same as for the opening comment. Otherwise, it's impossible to detect the necessary indentation in languages like Python, where the block containing a comment is itself determined by this very indentation. If it's wrong for some reason, the subsequent call of CodeStyleManager.adjustLineIndent() should handle that in all other languages.
17 lines
361 B
Python
17 lines
361 B
Python
class ThisIsATest():
|
|
def __init__(self):
|
|
self.test = 1
|
|
|
|
def another_one(self):
|
|
print "Hello, world!"
|
|
|
|
def another_two(self):
|
|
print "Hello, world!"
|
|
|
|
def another_three(self):
|
|
print "Hello, world!"
|
|
|
|
# <editor-fold desc="Description">
|
|
def another_four(self):
|
|
print "Hello, world!"
|
|
# </editor-fold> |