eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7924
8a96736d465e
parent 7923
91e843545d9a
child 8273
698ae46f40a4
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
2474 Constructor 2474 Constructor
2475 2475
2476 @param curLine text to work on (string) 2476 @param curLine text to work on (string)
2477 @param prevLine line before the text to work on (string) 2477 @param prevLine line before the text to work on (string)
2478 @param nextLine line after the text to work on (string) 2478 @param nextLine line after the text to work on (string)
2479 @keyparam maxLength maximum allowed line length (integer) 2479 @param maxLength maximum allowed line length (integer)
2480 @keyparam eol eond-of-line marker (string) 2480 @param eol eond-of-line marker (string)
2481 @keyparam indentWord string used for indentation (string) 2481 @param indentWord string used for indentation (string)
2482 @keyparam isDocString flag indicating that the line belongs to 2482 @param isDocString flag indicating that the line belongs to
2483 a documentation string (boolean) 2483 a documentation string (boolean)
2484 """ 2484 """
2485 self.__text = curLine 2485 self.__text = curLine
2486 self.__prevText = prevLine 2486 self.__prevText = prevLine
2487 self.__nextText = nextLine 2487 self.__nextText = nextLine

eric ide

mercurial