src/eric7/QScintilla/Lexers/LexerTCL.py

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

eric ide

mercurial