@@ -429,14 +429,14 @@ export class MessageProcessor {
429
429
'`textDocument`, `textDocument.uri`, and `contentChanges` arguments are required.' ,
430
430
) ;
431
431
}
432
- const textDocument = params . textDocument ;
433
- const uri = textDocument . uri ;
432
+ const { textDocument } = params ;
433
+ const { uri } = textDocument ;
434
434
const project = this . _graphQLCache . getProjectForFile ( uri ) ;
435
435
try {
436
- const contentChanges = params . contentChanges ;
436
+ const { contentChanges } = params ;
437
437
const contentChange = contentChanges [ contentChanges . length - 1 ] ;
438
438
439
- // As `contentChanges` is an array and we just want the
439
+ // As `contentChanges` is an array, and we just want the
440
440
// latest update to the text, grab the last entry from the array.
441
441
442
442
// If it's a .js file, try parsing the contents to see if GraphQL queries
@@ -512,8 +512,8 @@ export class MessageProcessor {
512
512
if ( ! params || ! params . textDocument ) {
513
513
throw new Error ( '`textDocument` is required.' ) ;
514
514
}
515
- const textDocument = params . textDocument ;
516
- const uri = textDocument . uri ;
515
+ const { textDocument } = params ;
516
+ const { uri } = textDocument ;
517
517
518
518
if ( this . _textDocumentCache . has ( uri ) ) {
519
519
this . _textDocumentCache . delete ( uri ) ;
@@ -560,8 +560,7 @@ export class MessageProcessor {
560
560
561
561
this . validateDocumentAndPosition ( params ) ;
562
562
563
- const textDocument = params . textDocument ;
564
- const position = params . position ;
563
+ const { textDocument, position } = params ;
565
564
566
565
// `textDocument/completion` event takes advantage of the fact that
567
566
// `textDocument/didChange` event always fires before, which would have
@@ -617,8 +616,7 @@ export class MessageProcessor {
617
616
618
617
this . validateDocumentAndPosition ( params ) ;
619
618
620
- const textDocument = params . textDocument ;
621
- const position = params . position ;
619
+ const { textDocument, position } = params ;
622
620
623
621
const cachedDocument = this . _getCachedDocument ( textDocument . uri ) ;
624
622
if ( ! cachedDocument ) {
@@ -679,7 +677,7 @@ export class MessageProcessor {
679
677
change . type === FileChangeTypeKind . Created ||
680
678
change . type === FileChangeTypeKind . Changed
681
679
) {
682
- const uri = change . uri ;
680
+ const { uri } = change ;
683
681
684
682
const text = readFileSync ( URI . parse ( uri ) . fsPath , 'utf-8' ) ;
685
683
const contents = this . _parser ( text , uri ) ;
@@ -747,8 +745,7 @@ export class MessageProcessor {
747
745
if ( ! params || ! params . textDocument || ! params . position ) {
748
746
throw new Error ( '`textDocument` and `position` arguments are required.' ) ;
749
747
}
750
- const textDocument = params . textDocument ;
751
- const position = params . position ;
748
+ const { textDocument, position } = params ;
752
749
const project = this . _graphQLCache . getProjectForFile ( textDocument . uri ) ;
753
750
if ( project ) {
754
751
await this . _cacheSchemaFilesForProject ( project ) ;
@@ -846,7 +843,7 @@ export class MessageProcessor {
846
843
throw new Error ( '`textDocument` argument is required.' ) ;
847
844
}
848
845
849
- const textDocument = params . textDocument ;
846
+ const { textDocument } = params ;
850
847
const cachedDocument = this . _getCachedDocument ( textDocument . uri ) ;
851
848
if ( ! cachedDocument || ! cachedDocument . contents [ 0 ] ) {
852
849
return [ ] ;
0 commit comments