Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 8a87797

Browse files
daviwilfelixfbecker
authored andcommitted
feat(typescript): upgrade to typescript 2.7.2 (#431)
1 parent 2cac6cb commit 8a87797

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"rxjs": "^5.5.0",
5252
"semaphore-async-await": "^1.5.1",
5353
"string-similarity": "^1.1.0",
54-
"typescript": "2.6.2",
54+
"typescript": "2.7.2",
5555
"vscode-jsonrpc": "^3.3.1",
5656
"vscode-languageserver": "^3.1.0",
5757
"vscode-languageserver-types": "^3.0.3"

src/test/typescript-service-helpers.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export function describeTypeScriptService(
382382
character: 8,
383383
},
384384
},
385-
contents: [{ language: 'typescript', value: 'import Foo' }, '**alias**'],
385+
contents: [{ language: 'typescript', value: 'class Foo\nimport Foo' }, '**alias**'],
386386
})
387387
})
388388
specify('over keyword (non-null)', async function(this: TestContext & ITestCallbackContext): Promise<void> {
@@ -2297,11 +2297,11 @@ export function describeTypeScriptService(
22972297
uri: 'git://github.com/Microsoft/TypeScript?v' + ts.version + '#lib/lib.dom.d.ts',
22982298
range: {
22992299
start: {
2300-
line: 8428,
2300+
line: 8446,
23012301
character: 10,
23022302
},
23032303
end: {
2304-
line: 8428,
2304+
line: 8446,
23052305
character: 14,
23062306
},
23072307
},
@@ -2310,11 +2310,11 @@ export function describeTypeScriptService(
23102310
uri: 'git://github.com/Microsoft/TypeScript?v' + ts.version + '#lib/lib.dom.d.ts',
23112311
range: {
23122312
start: {
2313-
line: 8480,
2313+
line: 8498,
23142314
character: 12,
23152315
},
23162316
end: {
2317-
line: 8480,
2317+
line: 8498,
23182318
character: 16,
23192319
},
23202320
},
@@ -3302,7 +3302,7 @@ export function describeTypeScriptService(
33023302
.toPromise()
33033303
assert.deepEqual(actions, [
33043304
{
3305-
title: "Add 'this.' to unresolved variable.",
3305+
title: "Add 'this.' to unresolved variable",
33063306
command: 'codeFix',
33073307
arguments: [
33083308
{

0 commit comments

Comments
 (0)