188 |
188 |
189 def isCommentStyle(self, style): |
189 def isCommentStyle(self, style): |
190 """ |
190 """ |
191 Public method to check, if a style is a comment style. |
191 Public method to check, if a style is a comment style. |
192 |
192 |
|
193 @param style style to check (integer) |
193 @return flag indicating a comment style (boolean) |
194 @return flag indicating a comment style (boolean) |
194 """ |
195 """ |
195 return True |
196 return True |
196 |
197 |
197 def isStringStyle(self, style): |
198 def isStringStyle(self, style): |
198 """ |
199 """ |
199 Public method to check, if a style is a string style. |
200 Public method to check, if a style is a string style. |
200 |
201 |
|
202 @param style style to check (integer) |
201 @return flag indicating a string style (boolean) |
203 @return flag indicating a string style (boolean) |
202 """ |
204 """ |
203 return True |
205 return True |
204 |
206 |
205 def keywords(self, kwSet): |
207 def keywords(self, kwSet): |