/* */
/* */ private ASTPath getPathFromChildren(Node selectFunction)
/* */ {
/* 1806 */ for (int childInd = 0; childInd < selectFunction.jjtGetNumChildren(); childInd++)
/* */ {
/* 1808 */ Node child = selectFunction.jjtGetChild(childInd);
/* 1809 */ if ((child instanceof ASTPath))
/* */ {
/* 1811 */ return (ASTPath)child;
/* */ }
/* 1813 */ if (!(child instanceof SelectFunction))
/* */ continue;
/* 1815 */ Node path = getPathFromChildren(child);
/* 1816 */ if (path != null)
/* */ {
/* 1818 */ return (ASTPath)path;
/* */ }
/* */ }