Lines Matching refs:arguments
135 argumentsArray = componentNode.arguments[0].properties.slice();
221 return node.arguments && node.arguments[0] && ts.isObjectLiteralExpression(node.arguments[0]) &&
222 node.arguments[0].properties && node.arguments[0].properties.length > 0;
310 if (node.arguments[0].properties) {
311 node.arguments[0].properties.forEach(item => {
324 if (componentNode.arguments && componentNode.arguments.length) {
398 …if (!keyArray.length && componentNode.arguments && componentNode.arguments.length > 0 && component…
415 integrateParams ? componentNode.arguments[0] : ts.factory.createObjectLiteralExpression(
450 if (componentNode.arguments && componentNode.arguments.length > 0 &&
451 …ts.isObjectLiteralExpression(componentNode.arguments[0]) && componentNode.arguments[0].properties)…
452 componentNode.arguments[0].properties.forEach((propertyItem: ts.PropertyAssignment) => {
527 if (componentNode.arguments && componentNode.arguments.length > 0 &&
528 …ts.isObjectLiteralExpression(componentNode.arguments[0]) && componentNode.arguments[0].properties)…
529 componentNode.arguments[0].properties.forEach((propertyItem: ts.PropertyAssignment) => {
602 const nodeArguments: ts.NodeArray<ts.Expression> = node.arguments;