Searched refs:returnValueProperty (Results 1 – 1 of 1) sorted by relevance
/third_party/typescript/src/services/refactors/ |
D | extractSymbol.ts | 915 …const { body, returnValueProperty } = transformFunctionBody(node, exposedVariableDeclarations, wri… constant 1010 Debug.assert(!returnValueProperty, "Expected no returnValueProperty"); 1083 if (returnValueProperty) { 1088 …[factory.createVariableDeclaration(returnValueProperty, /*exclamationToken*/ undefined, getTypeDee… 1093 if (returnValueProperty) { 1094 assignments.unshift(factory.createShorthandPropertyAssignment(returnValueProperty)); 1101 Debug.assert(!returnValueProperty, "Shouldn't have returnValueProperty here"); 1114 if (returnValueProperty) { 1115 … newNodes.push(factory.createReturnStatement(factory.createIdentifier(returnValueProperty))); 1409 …: ReadonlyESMap<string, Node>, hasReturn: boolean): { body: Block, returnValueProperty: string | u… [all …]
|