mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-16 01:07:06 +08:00
Use new-ish LSP 'relatedInformation' field for :ALEDetail
This commit is contained in:
@@ -140,6 +140,35 @@ Execute(ale#lsp#response#ReadDiagnostics() should handle multiple messages):
|
||||
\ },
|
||||
\ ]}})
|
||||
|
||||
Execute(ale#lsp#response#ReadDiagnostics() should use relatedInformation for detail):
|
||||
AssertEqual [
|
||||
\ {
|
||||
\ 'type': 'E',
|
||||
\ 'text': 'Something went wrong!',
|
||||
\ 'lnum': 1,
|
||||
\ 'col': 3,
|
||||
\ 'end_lnum': 1,
|
||||
\ 'end_col': 3,
|
||||
\ 'relatedInformation': [{
|
||||
\ 'message': 'might be this',
|
||||
\ 'location': {
|
||||
\ 'uri': 'file:///tmp/someotherfile.txt',
|
||||
\ 'range': {
|
||||
\ 'start': { 'line': 42, 'character': 79 },
|
||||
\ 'end': { 'line': 43, 'character': 80 },
|
||||
\ }
|
||||
\ }
|
||||
\ }]
|
||||
\ }
|
||||
\ ],
|
||||
\ ale#lsp#response#ReadDiagnostics({'params': {'uri': 'filename.ts', 'diagnostics': [
|
||||
\ {
|
||||
\ 'range': Range(0, 2, 0, 2),
|
||||
\ 'message': 'Something went wrong!',
|
||||
\ 'detail': 'file:///tmp/someotherfile.txt:42:79: might be this'
|
||||
\ }
|
||||
\ ]}})
|
||||
|
||||
Execute(ale#lsp#response#ReadTSServerDiagnostics() should handle tsserver responses):
|
||||
AssertEqual
|
||||
\ [
|
||||
|
||||
Reference in New Issue
Block a user