src/eric7/QScintilla/Lexers/LexerCoffeeScript.py

branch
eric7
changeset 9484
d2eb8f0a5bf0
parent 9473
3f23dbf37dbe
child 9653
e67609152c5e
equal deleted inserted replaced
9483:1208b0ef8ccb 9484:d2eb8f0a5bf0
93 Public method to get the maximum keyword set. 93 Public method to get the maximum keyword set.
94 94
95 @return maximum keyword set (integer) 95 @return maximum keyword set (integer)
96 """ 96 """
97 return 4 97 return 4
98
99
100 def createLexer(variant="", parent=None):
101 """
102 Function to instantiate a lexer object.
103
104 @param variant name of the language variant
105 @type str
106 @param parent parent widget of this lexer
107 @type QObject
108 @return instantiated lexer object
109 @rtype LexerCoffeeScript
110 """
111 return LexerCoffeeScript(parent=parent)

eric ide

mercurial