src/eric7/QScintilla/Lexers/LexerD.py

branch
eric7
changeset 9484
d2eb8f0a5bf0
parent 9473
3f23dbf37dbe
child 9653
e67609152c5e
equal deleted inserted replaced
9483:1208b0ef8ccb 9484:d2eb8f0a5bf0
102 Public method to get the maximum keyword set. 102 Public method to get the maximum keyword set.
103 103
104 @return maximum keyword set (integer) 104 @return maximum keyword set (integer)
105 """ 105 """
106 return 7 106 return 7
107
108
109 def createLexer(variant="", parent=None):
110 """
111 Function to instantiate a lexer object.
112
113 @param variant name of the language variant
114 @type str
115 @param parent parent widget of this lexer
116 @type QObject
117 @return instantiated lexer object
118 @rtype LexerD
119 """
120 return LexerD(parent=parent)

eric ide

mercurial