Home
last modified time | relevance | path

Searched refs:copyComments (Results 1 – 4 of 4) sorted by relevance

/third_party/typescript/src/services/refactors/
DconvertParamsToDestructuredObject.ts449 copyComments(arg, property);
494 copyComments(thisParameter.name, newThisParameter.name);
497 copyComments(thisParameter.type, newThisParameter.type!);
513 copyComments(parameterDeclaration.initializer, element.initializer);
537 copyComments(parameterDeclaration.name, propertySignature.name);
539 copyComments(parameterDeclaration.type, propertySignature.type);
DconvertArrowFunctionOrFunctionExpression.ts241 copyComments(head, body);
/third_party/typescript/src/services/codefixes/
DreturnValueCorrect.ts220 copyComments(commentSource, newBody);
/third_party/typescript/src/services/
Dutilities.ts2617 export function copyComments(sourceNode: Node, targetNode: Node) { function