Lines Matching refs:body
194 if (ts.isBlock(item.body) && item.body.statements && item.body.statements.length) {
196 GLOBAL_STYLE_FUNCTION.set(item.name.getText(), item.body);
382 if (node.body && ts.isBlock(node.body)) {
383 const statementsArray: ts.Block = node.body;
579 const body: ts.Block | ts.EtsComponentExpression | ts.IfStatement = constant
580 arrowFunction.body as ts.Block | ts.EtsComponentExpression | ts.IfStatement;
581 if (!body) {
584 if (ts.isBlock(body) && isNonspecificChildBlock(body, specificChildSet, allComponentNames)) {
587 if (ts.isIfStatement(body) && isNonspecificChildIf(body, specificChildSet, allComponentNames)) {
590 if (ts.isCallExpression(body) && isForEachComponent(body) &&
591 isNonspecificChildForEach(body, specificChildSet, allComponentNames)) {
594 if (ts.isEtsComponentExpression(body) && !isForEachComponent(body) &&
595 isComponent(body, allComponentNames) &&
596 isNonspecificChildNonForEach(body, specificChildSet)) {