7 Module implementing a JSON lexer with some additional methods. |
7 Module implementing a JSON lexer with some additional methods. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.Qsci import QsciLexerJSON |
10 from PyQt6.Qsci import QsciLexerJSON |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 |
12 from .Lexer import Lexer |
14 from .Lexer import Lexer |
13 from eric7 import Preferences |
|
14 |
15 |
15 |
16 |
16 class LexerJSON(Lexer, QsciLexerJSON): |
17 class LexerJSON(Lexer, QsciLexerJSON): |
17 """ |
18 """ |
18 Subclass to implement some additional lexer dependent methods. |
19 Subclass to implement some additional lexer dependent methods. |