Home
last modified time | relevance | path

Searched refs:isRefactorErrorInfo (Results 1 – 9 of 9) sorted by relevance

/third_party/typescript/src/services/refactors/
DgenerateGetAccessorAndSetAccessor.ts16 Debug.assert(info && !isRefactorErrorInfo(info), "Expected applicable refactor info");
32 if (!isRefactorErrorInfo(info)) {
DaddOrRemoveBracesToArrowFunction.ts34 if (!isRefactorErrorInfo(info)) {
61 Debug.assert(info && !isRefactorErrorInfo(info), "Expected applicable refactor info");
DinferFunctionReturnType.ts19 if (info && !isRefactorErrorInfo(info)) {
29 if (!isRefactorErrorInfo(info)) {
Dhelpers.ts13 export function isRefactorErrorInfo(info: unknown): info is RefactorErrorInfo { function
DconvertToOptionalChainExpression.ts21 if (!isRefactorErrorInfo(info)) {
41 Debug.assert(info && !isRefactorErrorInfo(info), "Expected applicable refactor info");
DconvertImport.ts29 if (!isRefactorErrorInfo(info)) {
47 Debug.assert(info && !isRefactorErrorInfo(info), "Expected applicable refactor info");
DextractType.ts31 if (!isRefactorErrorInfo(info)) {
57 Debug.assert(info && !isRefactorErrorInfo(info), "Expected to find a range to extract");
DconvertExport.ts25 if (!isRefactorErrorInfo(info)) {
44 Debug.assert(info && !isRefactorErrorInfo(info), "Expected applicable refactor info");
/third_party/typescript/src/services/codefixes/
DgenerateAccessors.ts22 if (!fieldInfo || refactor.isRefactorErrorInfo(fieldInfo)) return undefined;