File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
lsp-types/src/Language/LSP/Protocol/Types Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,21 @@ containsCreate :: WatchKind -> Bool
8
8
containsCreate WatchKind_Create = True
9
9
containsCreate (WatchKind_Custom 3 ) = True
10
10
containsCreate (WatchKind_Custom 5 ) = True
11
+ containsCreate (WatchKind_Custom 7 ) = True
11
12
containsCreate _ = False
12
13
13
14
containsChange :: WatchKind -> Bool
14
15
containsChange WatchKind_Change = True
15
16
containsChange (WatchKind_Custom 3 ) = True
16
17
containsChange (WatchKind_Custom 6 ) = True
18
+ containsChange (WatchKind_Custom 7 ) = True
17
19
containsChange _ = False
18
20
19
21
containsDelete :: WatchKind -> Bool
20
22
containsDelete WatchKind_Delete = True
21
23
containsDelete (WatchKind_Custom 5 ) = True
22
24
containsDelete (WatchKind_Custom 6 ) = True
25
+ containsDelete (WatchKind_Custom 7 ) = True
23
26
containsDelete _ = False
24
27
25
28
combineWatchKinds :: Set WatchKind -> WatchKind
You can’t perform that action at this time.
0 commit comments