Rhino JavaScript Java Library Source Code

Rhino JavaScript Java Library is an open-source implementation of JavaScript written entirely in Java.

Rhino JavaScript Java Library Source Code files are provided in binary package (rhino-1.7.14.zip).

You can also browse the source code below:

✍: FYIcenter.com

org/mozilla/javascript/ast/TemplateLiteral.java

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.javascript.ast;

import static java.util.Collections.emptyList;
import static java.util.Collections.unmodifiableList;

import java.util.ArrayList;
import java.util.List;
import org.mozilla.javascript.Token;

/**
 * AST node for a Template literal.
 *
 * <p>Node type is {@link Token#TEMPLATE_LITERAL}.
 */
public class TemplateLiteral extends AstNode {

    private List<AstNode> elements;

    {
        type = Token.TEMPLATE_LITERAL;
    }

    public TemplateLiteral() {}

    public TemplateLiteral(int pos) {
        super(pos);
    }

    public TemplateLiteral(int pos, int len) {
        super(pos, len);
    }

    /** Returns a list of all literal sections of this template literal */
    public List<TemplateCharacters> getTemplateStrings() {
        if (elements == null) return emptyList();
        List<TemplateCharacters> strings = new ArrayList<TemplateCharacters>();
        for (AstNode e : elements) {
            if (e.getType() == Token.TEMPLATE_CHARS) {
                strings.add((TemplateCharacters) e);
            }
        }
        return unmodifiableList(strings);
    }

    /** Returns a list of all substitutions of this template literal */
    public List<AstNode> getSubstitutions() {
        if (elements == null) return emptyList();
        List<AstNode> subs = new ArrayList<AstNode>();
        for (AstNode e : elements) {
            if (e.getType() != Token.TEMPLATE_CHARS) {
                subs.add(e);
            }
        }
        return unmodifiableList(subs);
    }

    /**
     * Returns the element list
     *
     * @return the element list. If there are no elements, returns an immutable empty list.
     */
    public List<AstNode> getElements() {
        if (elements == null) return emptyList();
        return elements;
    }

    /**
     * Sets the element list, and sets each element's parent to this node.
     *
     * @param elements the element list. Can be {@code null}.
     */
    public void setElements(List<AstNode> elements) {
        if (elements == null) {
            this.elements = null;
        } else {
            if (this.elements != null) this.elements.clear();
            for (AstNode e : elements) addElement(e);
        }
    }

    /**
     * Adds an element to the list, and sets its parent to this node.
     *
     * @param element the element to add
     * @throws IllegalArgumentException if element is {@code null}.
     */
    public void addElement(AstNode element) {
        assertNotNull(element);
        if (elements == null) elements = new ArrayList<AstNode>();
        elements.add(element);
        element.setParent(this);
    }

    /** Returns the number of elements in this {@code TemplateLiteral} literal. */
    public int getSize() {
        return elements == null ? 0 : elements.size();
    }

    /**
     * Returns element at specified index.
     *
     * @param index the index of the element to retrieve
     * @return the element
     * @throws IndexOutOfBoundsException if the index is invalid
     */
    public AstNode getElement(int index) {
        if (elements == null) throw new IndexOutOfBoundsException("no elements");
        return elements.get(index);
    }

    @Override
    public String toSource(int depth) {
        StringBuilder sb = new StringBuilder();
        sb.append(makeIndent(depth));
        sb.append("`");
        for (AstNode e : getElements()) {
            if (e.getType() == Token.TEMPLATE_CHARS) {
                sb.append(e.toSource(0));
            } else {
                sb.append("${").append(e.toSource(0)).append("}");
            }
        }
        sb.append("`");
        return sb.toString();
    }

    /** Visits this node. */
    @Override
    public void visit(NodeVisitor v) {
        if (v.visit(this)) {
            for (AstNode e : getElements()) {
                e.visit(v);
            }
        }
    }
}

org/mozilla/javascript/ast/TemplateLiteral.java

 

Or download all of them as a single archive file:

File name: rhino-1.7.14-sources.jar
File size: 1029165 bytes
Release date: 2022-01-06
Download 

 

Example code to Test rhino-runtime-1.7.14.jar

Download Rhino JavaScript Binary Package

Download and Review Rhino JavaScript Java Library

⇑⇑ FAQ for Rhino JavaScript Java Library

2022-05-03, 35610👍, 1💬