File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ class BatchHelper implements Denops {
34
34
return this . #denops. meta ;
35
35
}
36
36
37
+ get interrupted ( ) : AbortSignal {
38
+ return this . #denops. interrupted ;
39
+ }
40
+
37
41
get context ( ) : Record < string | number | symbol , unknown > {
38
42
return this . #denops. context ;
39
43
}
Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ class CollectHelper implements Denops {
33
33
return this . #denops. meta ;
34
34
}
35
35
36
+ get interrupted ( ) : AbortSignal {
37
+ return this . #denops. interrupted ;
38
+ }
39
+
36
40
get context ( ) : Record < string | number | symbol , unknown > {
37
41
return this . #denops. context ;
38
42
}
Original file line number Diff line number Diff line change 33
33
],
34
34
"imports" : {
35
35
"@core/unknownutil" : " jsr:@core/unknownutil@^3.18.0" ,
36
- "@denops/core" : " jsr:@denops/core@^6 .0.6 " ,
37
- "@denops/test" : " jsr:@denops/test@^2 .0.0" ,
36
+ "@denops/core" : " jsr:@denops/core@^7 .0.0-pre0 " ,
37
+ "@denops/test" : " jsr:@denops/test@^3 .0.0-pre0 " ,
38
38
"@lambdalisue/errorutil" : " jsr:@lambdalisue/errorutil@^1.0.0" ,
39
39
"@lambdalisue/itertools" : " jsr:@lambdalisue/itertools@^1.1.2" ,
40
40
"@lambdalisue/unreachable" : " jsr:@lambdalisue/unreachable@^1.0.1" ,
Original file line number Diff line number Diff line change @@ -188,6 +188,10 @@ class ExprStringHelper implements Denops {
188
188
return this . #denops. meta ;
189
189
}
190
190
191
+ get interrupted ( ) : AbortSignal {
192
+ return this . #denops. interrupted ;
193
+ }
194
+
191
195
get context ( ) : Record < string | number | symbol , unknown > {
192
196
return this . #denops. context ;
193
197
}
You can’t perform that action at this time.
0 commit comments