*
* @see <a href="http://www.w3.org/TR/css3-selectors/#nth-last-child-pseudo"><code>:nth-last-child</code> pseudo-class</a>
*/
private void addNthLastChild(final boolean byType) {
for (Node node : nodes) {
Index index = helper.getIndexInParent(node, byType);
if (specifier.isMatch(index.size - index.index+1))
result.add(node);
}
}