/// // @jsx: preserve // @filename: a.tsx ////declare var React: any; ////class Foo extends React.Component<{}, {}> { //// render() { //// return ( ////
//// /*a*//*b*/ ////
//// ); //// } ////} goTo.file("a.tsx"); goTo.select("a", "b"); edit.applyRefactor({ refactorName: "Extract Symbol", actionName: "function_scope_1", actionDescription: "Extract to method in class 'Foo'", newContent: `declare var React: any; class Foo extends React.Component<{}, {}> { render() { return (
{this./*RENAME*/newMethod()}
); } private newMethod() { return ; } }` });