Lines Matching refs:parent
221 node = createCustomDialogController(node.parent, node, transformLog.errors);
278 const tempParent: ts.Node = node.parent;
280 if (!node.parent && node.original) {
282 node.parent = node.original.parent;
289 node.parent = tempParent;
294 function createCustomDialogController(parent: ts.Expression, node: ts.NewExpression,
301 item = processCustomDialogControllerPropertyAssignment(parent,
336 function processCustomDialogControllerPropertyAssignment(parent: ts.Expression,
340 processCustomDialogControllerBuilder(parent, node.initializer, componentName));
344 function processCustomDialogControllerBuilder(parent: ts.Expression,
348 return createCustomComponentBuilderArrowFunction(parent, jsDialog, newExp);
351 function createCustomComponentBuilderArrowFunction(parent: ts.Expression,
354 if (ts.isBinaryExpression(parent)) {
355 mountNodde = parent.left;
356 } else if (ts.isVariableDeclaration(parent) || ts.isPropertyDeclaration(parent)) {
358 parent.name as ts.Identifier);