change refactor name

This commit is contained in:
BigAru
2018-10-31 14:27:36 +01:00
parent 367f47e755
commit e697856a7d
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -4721,7 +4721,7 @@
"category": "Message",
"code": 95068
},
"Convert arrow function or anonymous function": {
"Convert arrow function or function expression": {
"category": "Message",
"code": 95069
},
@@ -1,7 +1,7 @@
/* @internal */
namespace ts.refactor.convertArrowFunctionOrFunction {
const refactorName = "Convert arrow function or anonymous function";
const refactorDescription = Diagnostics.Convert_arrow_function_or_anonymous_function.message;
namespace ts.refactor.convertArrowFunctionOrFunctionExpression {
const refactorName = "Convert arrow function or function expression";
const refactorDescription = Diagnostics.Convert_arrow_function_or_function_expression.message;
const toAnonymousFunctionActionName = "Convert to anonymous function";
const toNamedFunctionActionName = "Convert to named function";
+1 -1
View File
@@ -80,7 +80,7 @@
"refactors/generateGetAccessorAndSetAccessor.ts",
"refactors/moveToNewFile.ts",
"refactors/addOrRemoveBracesToArrowFunction.ts",
"refactors/convertArrowFunctionOrFunction.ts",
"refactors/convertArrowFunctionOrFunctionExpression.ts",
"services.ts",
"breakpoints.ts",
"transform.ts",