TypeScript/tests/cases/fourslash/extract-method11.ts
Andrew Casey 3eea1a9e9a Generalize extract method to handle constants as well
Major changes:

1) Instead of skipping undesirable scopes, include them and mark them
with errors.  Constants can be extracted into more scopes.

2) Update the tests to call through the "public" API.  This caused some
baseline changes.

3) Rename refactoring to "Extract Symbol" for generality.

4) Return a second ApplicableRefactorInfo for constants.  Distinguish
the two by splitting the action name.
2017-09-26 17:29:34 -07:00

29 lines
833 B
TypeScript

/// <reference path='fourslash.ts' />
// Nonexhaustive list of things it should be illegal to be extract-method on
// * Import declarations
// * Super calls
// * Function body blocks
// * try/catch blocks
//// /*1a*/import * as x from 'y';/*1b*/
//// namespace N {
//// /*oka*/class C extends B {
//// constructor() {
//// /*2a*/super();/*2b*/
//// }
//// }/*okb*/
//// }
//// function f() /*3a*/{ return 0 }/*3b*/
//// try /*4a*/{ console.log }/*4b*/ catch (e) /*5a*/{ console.log; }/*5b*/
for (const m of ['1', '2', '3', '4', '5']) {
goTo.select(m + 'a', m + 'b');
verify.not.refactorAvailable('Extract Symbol');
}
// Verify we can still extract the entire class
goTo.select('oka', 'okb');
verify.refactorAvailable('Extract Symbol', 'function_scope_0');