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

feat(typescript): upgrade to typescript 2.7.2 #431

Merged
merged 1 commit into from
Feb 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"rxjs": "^5.5.0",
"semaphore-async-await": "^1.5.1",
"string-similarity": "^1.1.0",
"typescript": "2.6.2",
"typescript": "2.7.2",
"vscode-jsonrpc": "^3.3.1",
"vscode-languageserver": "^3.1.0",
"vscode-languageserver-types": "^3.0.3"
Expand Down
12 changes: 6 additions & 6 deletions src/test/typescript-service-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export function describeTypeScriptService(
character: 8,
},
},
contents: [{ language: 'typescript', value: 'import Foo' }, '**alias**'],
contents: [{ language: 'typescript', value: 'class Foo\nimport Foo' }, '**alias**'],
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like hovers now give you more symbol info than just the import statement!

})
})
specify('over keyword (non-null)', async function(this: TestContext & ITestCallbackContext): Promise<void> {
Expand Down Expand Up @@ -2297,11 +2297,11 @@ export function describeTypeScriptService(
uri: 'git://github.com/Microsoft/TypeScript?v' + ts.version + '#lib/lib.dom.d.ts',
range: {
start: {
line: 8428,
line: 8446,
character: 10,
},
end: {
line: 8428,
line: 8446,
character: 14,
},
},
Expand All @@ -2310,11 +2310,11 @@ export function describeTypeScriptService(
uri: 'git://github.com/Microsoft/TypeScript?v' + ts.version + '#lib/lib.dom.d.ts',
range: {
start: {
line: 8480,
line: 8498,
character: 12,
},
end: {
line: 8480,
line: 8498,
character: 16,
},
},
Expand Down Expand Up @@ -3302,7 +3302,7 @@ export function describeTypeScriptService(
.toPromise()
assert.deepEqual(actions, [
{
title: "Add 'this.' to unresolved variable.",
title: "Add 'this.' to unresolved variable",
command: 'codeFix',
arguments: [
{
Expand Down