All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.javascript.model.implementations.declaration.ArrayBindingPatternTreeImpl Maven / Gradle / Ivy

The newest version!
/*
 * SonarQube JavaScript Plugin
 * Copyright (C) 2011 SonarSource and Eriks Nukis
 * [email protected]
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.javascript.model.implementations.declaration;

import com.google.common.collect.Iterators;
import com.google.common.collect.Lists;
import com.sonar.sslr.api.AstNode;
import org.sonar.javascript.ast.visitors.TreeVisitor;
import org.sonar.javascript.model.implementations.JavaScriptTree;
import org.sonar.javascript.model.implementations.SeparatedList;
import org.sonar.javascript.model.implementations.lexical.InternalSyntaxToken;
import org.sonar.javascript.model.interfaces.Tree;
import org.sonar.javascript.model.interfaces.declaration.ArrayBindingPatternTree;
import org.sonar.javascript.model.interfaces.declaration.BindingElementTree;
import org.sonar.javascript.model.interfaces.expression.IdentifierTree;
import org.sonar.javascript.model.interfaces.expression.RestElementTree;
import org.sonar.javascript.parser.sslr.Optional;

import java.util.Iterator;
import java.util.List;

public class ArrayBindingPatternTreeImpl extends JavaScriptTree implements ArrayBindingPatternTree {

  private final InternalSyntaxToken openBracketToken;
  private final SeparatedList> elements;
  private final InternalSyntaxToken closeBracketToken;

  public ArrayBindingPatternTreeImpl(
    InternalSyntaxToken openBracketToken,
    SeparatedList> elements,
    List children,
    InternalSyntaxToken closeBracketToken) {

    super(Kind.ARRAY_BINDING_PATTERN);

    this.openBracketToken = openBracketToken;
    this.elements = elements;
    this.closeBracketToken = closeBracketToken;

    addChild(openBracketToken);
    for (AstNode child : children) {
      addChild(child);
    }
    addChild(closeBracketToken);
  }

  @Override
  public InternalSyntaxToken openBracketToken() {
    return openBracketToken;
  }

  @Override
  public SeparatedList> elements() {
    return elements;
  }

  @Override
  public InternalSyntaxToken closeBracketToken() {
    return closeBracketToken;
  }

  @Override
  public Kind getKind() {
    return Kind.ARRAY_BINDING_PATTERN;
  }

  @Override
  public Iterator childrenIterator() {
    List nonElidedElements = Lists.newArrayList();
    for (Optional e : elements) {
      if (e.isPresent()) {
        nonElidedElements.add(e.get());
      }
    }
    return Iterators.concat(nonElidedElements.iterator());
  }

  @Override
  public void accept(TreeVisitor visitor) {
    visitor.visitArrayBindingPattern(this);
  }

  /**
   * Return the list of new binding names introduced by this array binding pattern.
   * 

* Example: *

   *   [a, , , b, ...c] // will return [a, b, c]
   * 
*/ public List bindingIdentifiers() { List bindingIdentifiers = Lists.newArrayList(); for (Optional element : elements) { if (element.isPresent()) { if (element.get().is(Kind.BINDING_IDENTIFIER)) { bindingIdentifiers.add((IdentifierTree) element.get()); } else if (element.get().is(Kind.REST_ELEMENT)) { bindingIdentifiers.add((IdentifierTree) ((RestElementTree) element.get()).element()); } else if (element.get().is(Kind.OBJECT_BINDING_PATTERN)) { bindingIdentifiers.addAll(((ObjectBindingPatternTreeImpl) element.get()).bindingIdentifiers()); } else { bindingIdentifiers.addAll(((ArrayBindingPatternTreeImpl) element.get()).bindingIdentifiers()); } } } return bindingIdentifiers; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy