src/eric7/QScintilla/Lexers/LexerLua.py

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

eric ide

mercurial