This repository was archived by the owner on Oct 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 51
51
"rxjs" : " ^5.5.0" ,
52
52
"semaphore-async-await" : " ^1.5.1" ,
53
53
"string-similarity" : " ^1.1.0" ,
54
- "typescript" : " 2.7.2 " ,
54
+ "typescript" : " 2.8.3 " ,
55
55
"vscode-jsonrpc" : " ^3.3.1" ,
56
56
"vscode-languageserver" : " ^3.1.0" ,
57
57
"vscode-languageserver-types" : " ^3.0.3"
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ function convertDiagnosticCategory(category: ts.DiagnosticCategory): DiagnosticS
35
35
return DiagnosticSeverity . Warning
36
36
case ts . DiagnosticCategory . Message :
37
37
return DiagnosticSeverity . Information
38
- // unmapped: DiagnosticSeverity.Hint
38
+ case ts . DiagnosticCategory . Suggestion :
39
+ return DiagnosticSeverity . Hint
39
40
}
40
41
}
Original file line number Diff line number Diff line change @@ -2297,11 +2297,11 @@ export function describeTypeScriptService(
2297
2297
uri : 'git://github.com/Microsoft/TypeScript?v' + ts . version + '#lib/lib.dom.d.ts' ,
2298
2298
range : {
2299
2299
start : {
2300
- line : 8446 ,
2300
+ line : 9378 ,
2301
2301
character : 10 ,
2302
2302
} ,
2303
2303
end : {
2304
- line : 8446 ,
2304
+ line : 9378 ,
2305
2305
character : 14 ,
2306
2306
} ,
2307
2307
} ,
@@ -2310,11 +2310,11 @@ export function describeTypeScriptService(
2310
2310
uri : 'git://github.com/Microsoft/TypeScript?v' + ts . version + '#lib/lib.dom.d.ts' ,
2311
2311
range : {
2312
2312
start : {
2313
- line : 8498 ,
2313
+ line : 9429 ,
2314
2314
character : 12 ,
2315
2315
} ,
2316
2316
end : {
2317
- line : 8498 ,
2317
+ line : 9429 ,
2318
2318
character : 16 ,
2319
2319
} ,
2320
2320
} ,
@@ -3309,8 +3309,8 @@ export function describeTypeScriptService(
3309
3309
fileName : toUnixPath ( uri2path ( rootUri + 'a.ts' ) ) , // path only used by TS service
3310
3310
textChanges : [
3311
3311
{
3312
- span : { start : 49 , length : 13 } ,
3313
- newText : '\t\tthis .missingThis' ,
3312
+ span : { start : 51 , length : 11 } ,
3313
+ newText : 'this .missingThis' ,
3314
3314
} ,
3315
3315
] ,
3316
3316
} ,
You can’t perform that action at this time.
0 commit comments