Example #1
0
  public Selector directJoin(Selector firstI, Selector secondI) {
    // if both of them are null, something is very wrong
    if (secondI == null) return firstI.clone();

    if (firstI == null) return secondI.clone();

    Selector first = firstI.clone();
    List<SelectorPart> secondParts = ArraysUtils.deeplyClonedList(secondI.getParts());
    List<Extend> secondExtends = ArraysUtils.deeplyClonedList(secondI.getExtend());
    SelectorPart secondHead = secondParts.get(0);

    if (secondHead.isAppender())
      return indirectJoinNoClone(
          first, secondHead.getLeadingCombinator(), secondParts, secondExtends);

    /*
     * FIXME: test on old whether survives if first is not simple selector. (say, if:
     * (~"escaped") {
     *   &:pseudo() {
     *   }
     * }
     *
     */
    SelectorPart attachToHead = first.getLastPart();
    directlyJoinParts(attachToHead, secondHead);

    secondParts.remove(0);
    SelectorCombinator leadingCombinator =
        secondParts.isEmpty() ? null : secondParts.get(0).getLeadingCombinator();
    return indirectJoinNoClone(first, leadingCombinator, secondParts, secondExtends);
  }
 @Override
 @NotAstProperty
 public List<? extends ASTCssNode> getChilds() {
   List<ASTCssNode> result = ArraysUtils.asNonNullList((ASTCssNode) variable);
   return result;
 }
 @Override
 @NotAstProperty
 public List<? extends ASTCssNode> getChilds() {
   return ArraysUtils.asNonNullList(variable, value);
 }
Example #4
0
 @Override
 @NotAstProperty
 public List<? extends ASTCssNode> getChilds() {
   return ArraysUtils.asNonNullList(expression);
 }