-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* escape dot in maker regex * Create test_typecheck_handler * Rename test_typecheck_handler to test_typecheck_handler.vader
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Execute(The typecheck handler should parse lines correctly): | ||
runtime ale_linters/typescript/typecheck.vim | ||
|
||
AssertEqual | ||
\ [ | ||
\ { | ||
\ 'bufnr': 347, | ||
\ 'lnum': 16, | ||
\ 'vcol': 0, | ||
\ 'col': 7, | ||
\ 'text': "Type 'A' is not assignable to type 'B'", | ||
\ 'type': 'E', | ||
\ 'nr': -1, | ||
\ }, | ||
\ { | ||
\ 'bufnr': 347, | ||
\ 'lnum': 7, | ||
\ 'vcol': 0, | ||
\ 'col': 41, | ||
\ 'text': "Property 'a' does not exist on type 'A'", | ||
\ 'type': 'E', | ||
\ 'nr': -1, | ||
\ }, | ||
\ ], | ||
\ ale_linters#typescript#typecheck#Handle(347, [ | ||
\ "somets.ts[16, 7]: Type 'A' is not assignable to type 'B'", | ||
\ "somets.ts[7, 41]: Property 'a' does not exist on type 'A'", | ||
\ ]) | ||
|
||
After: | ||
call ale#linter#Reset() |