Merge pull request #18563 from amcasey/GH18546

Stop requiring that the full range of a declaration fall within the selection
This commit is contained in:
Andrew Casey
2017-09-19 10:47:16 -07:00
committed by GitHub
4 changed files with 27 additions and 6 deletions

View File

@@ -1,8 +1,5 @@
/// <reference path='fourslash.ts' />
// TODO: GH#18546
// For now this tests that at least we don't crash.
////function f() {
//// /*start*/namespace N {}/*end*/
////}
@@ -13,9 +10,9 @@ edit.applyRefactor({
actionName: "scope_1",
actionDescription: "Extract to function in global scope",
newContent: `function f() {
/*RENAME*/newFunction(N);
/*RENAME*/newFunction();
}
function newFunction(N: any) {
function newFunction() {
namespace N { }
}
`