@@ -30,11 +30,6 @@ class DiagnosticsEngine
30
30
*/
31
31
private array $ diagnostics = [];
32
32
33
- /**
34
- * @var array<int|string,int|string>
35
- */
36
- private array $ versions = [];
37
-
38
33
/**
39
34
* @var array<string,Deferred<bool>>
40
35
*/
@@ -78,9 +73,14 @@ public function run(CancellationToken $token): Promise
78
73
79
74
yield $ this ->awaitNextDocument ();
80
75
76
+ $ beforeDocument = $ this ->waiting ;
81
77
$ gracePeriod = abs ($ this ->sleepTime - ((microtime (true ) - $ this ->lastUpdatedAt ) * 1000 ));
82
78
yield delay (intval ($ gracePeriod ));
83
79
80
+ if ($ beforeDocument !== $ this ->waiting ) {
81
+ continue ;
82
+ }
83
+
84
84
$ textDocument = $ this ->waiting ;
85
85
$ this ->waiting = null ;
86
86
// allow the next document update to resolve
@@ -99,8 +99,6 @@ public function run(CancellationToken $token): Promise
99
99
);
100
100
$ this ->diagnostics [$ textDocument ->uri ] = [];
101
101
102
- $ this ->versions [$ textDocument ->uri ] = $ textDocument ->version ;
103
-
104
102
$ crashedProviders = [];
105
103
106
104
foreach ($ this ->providers as $ providerId => $ provider ) {
@@ -144,15 +142,14 @@ public function run(CancellationToken $token): Promise
144
142
145
143
$ elapsed = (int )round ((microtime (true ) - $ start ) / 1000 );
146
144
147
- $ this ->diagnostics [$ textDocument ->uri ] = array_merge (
148
- $ this ->diagnostics [$ textDocument ->uri ] ?? [],
149
- $ diagnostics
150
- );
151
-
152
145
if (!$ this ->isDocumentCurrent ($ textDocument )) {
153
146
return ;
154
147
}
155
148
149
+ $ this ->diagnostics [$ textDocument ->uri ] = array_merge (
150
+ $ this ->diagnostics [$ textDocument ->uri ] ?? [],
151
+ $ diagnostics
152
+ );
156
153
157
154
$ this ->clientApi ->diagnostics ()->publishDiagnostics (
158
155
$ textDocument ->uri ,
@@ -188,7 +185,7 @@ public function enqueue(TextDocumentItem $textDocument): void
188
185
189
186
private function isDocumentCurrent (TextDocumentItem $ textDocument ): bool
190
187
{
191
- return $ textDocument -> version === ( $ this -> versions [ $ textDocument -> uri ] ?? - 1 ) ;
188
+ return $ this -> waiting === null ;
192
189
}
193
190
194
191
/**
0 commit comments