70 """ |
70 """ |
71 return style in [QsciLexerJavaScript.DoubleQuotedString, |
71 return style in [QsciLexerJavaScript.DoubleQuotedString, |
72 QsciLexerJavaScript.SingleQuotedString, |
72 QsciLexerJavaScript.SingleQuotedString, |
73 QsciLexerJavaScript.UnclosedString, |
73 QsciLexerJavaScript.UnclosedString, |
74 QsciLexerJavaScript.VerbatimString] |
74 QsciLexerJavaScript.VerbatimString] |
|
75 |
|
76 def defaultKeywords(self, kwSet): |
|
77 """ |
|
78 Public method to get the default keywords. |
|
79 |
|
80 @param kwSet number of the keyword set (integer) |
|
81 """ |
|
82 return QsciLexerJavaScript.keywords(self, kwSet) |