54 |
54 |
55 def isCommentStyle(self, style): |
55 def isCommentStyle(self, style): |
56 """ |
56 """ |
57 Public method to check, if a style is a comment style. |
57 Public method to check, if a style is a comment style. |
58 |
58 |
|
59 @param style style to check (integer) |
59 @return flag indicating a comment style (boolean) |
60 @return flag indicating a comment style (boolean) |
60 """ |
61 """ |
61 return style in [QsciLexerCSharp.Comment, |
62 return style in [QsciLexerCSharp.Comment, |
62 QsciLexerCSharp.CommentDoc, |
63 QsciLexerCSharp.CommentDoc, |
63 QsciLexerCSharp.CommentLine, |
64 QsciLexerCSharp.CommentLine, |
65 |
66 |
66 def isStringStyle(self, style): |
67 def isStringStyle(self, style): |
67 """ |
68 """ |
68 Public method to check, if a style is a string style. |
69 Public method to check, if a style is a string style. |
69 |
70 |
|
71 @param style style to check (integer) |
70 @return flag indicating a string style (boolean) |
72 @return flag indicating a string style (boolean) |
71 """ |
73 """ |
72 return style in [QsciLexerCSharp.DoubleQuotedString, |
74 return style in [QsciLexerCSharp.DoubleQuotedString, |
73 QsciLexerCSharp.SingleQuotedString, |
75 QsciLexerCSharp.SingleQuotedString, |
74 QsciLexerCSharp.UnclosedString, |
76 QsciLexerCSharp.UnclosedString, |