27 |
27 |
28 def isCommentStyle(self, style): |
28 def isCommentStyle(self, style): |
29 """ |
29 """ |
30 Public method to check, if a style is a comment style. |
30 Public method to check, if a style is a comment style. |
31 |
31 |
|
32 @param style style to check (integer) |
32 @return flag indicating a comment style (boolean) |
33 @return flag indicating a comment style (boolean) |
33 """ |
34 """ |
34 return style in [LexerDiff.Comment] |
35 return style in [LexerDiff.Comment] |
35 |
36 |
36 def isStringStyle(self, style): |
37 def isStringStyle(self, style): |
37 """ |
38 """ |
38 Public method to check, if a style is a string style. |
39 Public method to check, if a style is a string style. |
39 |
40 |
|
41 @param style style to check (integer) |
40 @return flag indicating a string style (boolean) |
42 @return flag indicating a string style (boolean) |
41 """ |
43 """ |
42 return False |
44 return False |
43 |
45 |
44 def defaultKeywords(self, kwSet): |
46 def defaultKeywords(self, kwSet): |