File tree Expand file tree Collapse file tree
log-viewer/src/features/soql/services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,9 +73,8 @@ export class SOQLParser {
7373 async parse ( query : string ) : Promise < SOQLTree > {
7474 // Dynamic import for code splitting. Improves performance by reducing the amount of JS that is loaded and parsed at the start.
7575 // eslint-disable-next-line @typescript-eslint/naming-convention
76- const { ApexLexer, ApexParser, CaseInsensitiveInputStream } = await import (
77- '@apexdevtools/apex-parser'
78- ) ;
76+ const { ApexLexer, ApexParser, CaseInsensitiveInputStream } =
77+ await import ( '@apexdevtools/apex-parser' ) ;
7978 // Dynamic import for code splitting. Improves performance by reducing the amount of JS that is loaded and parsed at the start.
8079 // eslint-disable-next-line @typescript-eslint/naming-convention
8180 const { CharStreams, CommonTokenStream } = await import ( 'antlr4ts' ) ;
You can’t perform that action at this time.
0 commit comments