Lines Matching refs:arguments
137 argumentsArray = componentNode.arguments[0].properties.slice();
218 return node.arguments && node.arguments[0] && ts.isObjectLiteralExpression(node.arguments[0]) &&
219 node.arguments[0].properties && node.arguments[0].properties.length > 0;
279 if (node.arguments[0].properties) {
280 node.arguments[0].properties.forEach(item => {
293 if (componentNode.arguments && componentNode.arguments.length) {
368 …if (!keyArray.length && componentNode.arguments && componentNode.arguments.length > 0 && component…
385 integrateParams ? componentNode.arguments[0] : ts.factory.createObjectLiteralExpression(
420 if (componentNode.arguments && componentNode.arguments.length > 0 &&
421 …ts.isObjectLiteralExpression(componentNode.arguments[0]) && componentNode.arguments[0].properties)…
422 componentNode.arguments[0].properties.forEach((propertyItem: ts.PropertyAssignment) => {
467 if (componentNode.arguments && componentNode.arguments.length > 0 &&
468 …ts.isObjectLiteralExpression(componentNode.arguments[0]) && componentNode.arguments[0].properties)…
469 componentNode.arguments[0].properties.forEach((propertyItem: ts.PropertyAssignment) => {
548 const nodeArguments: ts.NodeArray<ts.Expression> = node.arguments;