@@ -455,7 +455,7 @@ interface TestItem {
455
455
// A human readable name for this test
456
456
label: string ;
457
457
// The kind of this test item. Based on the kind,
458
- // an icon is chosen by the editor.
458
+ // an icon is chosen by the editor.
459
459
kind: " package" | " module" | " test" ;
460
460
// True if this test may have children not available eagerly
461
461
canResolveChildren: boolean ;
@@ -467,19 +467,19 @@ interface TestItem {
467
467
// like debugging, this field is useful.
468
468
// Note that this field includes some information about label and location as well, but
469
469
// those exist just for keeping things in sync with other methods of running runnables
470
- // (for example using one consistent name in the vscode's launch.json) so for any propose
470
+ // (for example using one consistent name in the vscode's launch.json) so for any purpose
471
471
// other than running tests this field should not be used.
472
472
runnable? : Runnable | undefined ;
473
473
};
474
474
475
475
interface DiscoverTestResults {
476
476
// The discovered tests.
477
477
tests: TestItem [];
478
- // For each test which its id is in this list, the response
478
+ // For each test whose id is in this list, the response
479
479
// contains all tests that are children of this test, and
480
480
// client should remove old tests not included in the response.
481
481
scope: string [] | undefined ;
482
- // For each file which its uri is in this list, the response
482
+ // For each file whose uri is in this list, the response
483
483
// contains all tests that are located in this file, and
484
484
// client should remove old tests not included in the response.
485
485
scopeFile: lc .TextDocumentIdentifier [] | undefined ;
@@ -491,7 +491,7 @@ interface DiscoverTestResults {
491
491
** Notification:** ` DiscoverTestResults `
492
492
493
493
This notification is sent from the server to the client when the
494
- server detect changes in the existing tests. The ` DiscoverTestResults ` is
494
+ server detects changes in the existing tests. The ` DiscoverTestResults ` is
495
495
the same as the one in ` experimental/discoverTest ` response.
496
496
497
497
** Method:** ` experimental/runTest `
@@ -527,7 +527,7 @@ after this.
527
527
528
528
This notification is sent from the client to the server when the user is no longer
529
529
interested in the test results. The server should clean up its resources and send
530
- a ` experimental/endRunTest ` when is done.
530
+ a ` experimental/endRunTest ` when it is done.
531
531
532
532
** Method:** ` experimental/changeTestState `
533
533
@@ -648,8 +648,8 @@ interface ServerStatusParams {
648
648
```
649
649
650
650
This notification is sent from server to client.
651
- The client can use it to display * persistent* status to the user (in modline ).
652
- It is similar to the ` showMessage ` , but is intended for stares rather than point-in-time events.
651
+ The client can use it to display * persistent* status to the user (in the mode line ).
652
+ It is similar to the ` showMessage ` , but is intended for status rather than point-in-time events.
653
653
654
654
Note that this functionality is intended primarily to inform the end user about the state of the server.
655
655
In particular, it's valid for the client to completely ignore this extension.
@@ -1070,13 +1070,13 @@ export interface RecursiveMemoryLayoutNode = {
1070
1070
size: number ;
1071
1071
// / Alignment of the type in bytes
1072
1072
alignment: number ;
1073
- // / Offset of the type relative to its parent (or 0 if its the root)
1073
+ // / Offset of the type relative to its parent (or 0 if it's the root)
1074
1074
offset: number ;
1075
- // / Index of the node's parent (or -1 if its the root)
1075
+ // / Index of the node's parent (or -1 if it's the root)
1076
1076
parent_idx: number ;
1077
1077
// / Index of the node's children (or -1 if it does not have children)
1078
1078
children_start: number ;
1079
- // / Number of child nodes (unspecified it does not have children)
1079
+ // / Number of child nodes (unspecified if it does not have children)
1080
1080
children_len: number ;
1081
1081
};
1082
1082
0 commit comments