summaryrefslogtreecommitdiff
path: root/test/handler/test_dartanalyzer_handler.vader
blob: 954850c50abdf4065e85d4761a3cb13b4b27bf3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Before:
  runtime ale_linters/dart/dartanalyzer.vim

After:
  call ale#linter#Reset()

Execute(Basic problems should be parsed correctly):
  AssertEqual
  \ [
  \   {
  \     'type': 'E',
  \     'text': 'expected_token: Expected to find ''}''',
  \     'lnum': 5,
  \     'col': 1,
  \   },
  \   {
  \     'type': 'W',
  \     'text': 'invalid_assignment: A value of type ''String'' can''t be assigned to a variable of type ''int''',
  \     'lnum': 2,
  \     'col': 16,
  \   },
  \ ],
  \ ale_linters#dart#dartanalyzer#Handle(bufnr(''), [
  \ 'Analyzing main.dart...',
  \ '  error • Expected to find ''}'' at main.dart:5:1 • expected_token',
  \ '  warning • A value of type ''String'' can''t be assigned to a variable of type ''int'' at main.dart:2:16 • invalid_assignment',
  \ '1 error and 1 warning found.',
  \ ])