src/eric7/QScintilla/Lexers/LexerSQL.py

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

eric ide

mercurial