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

com.shapesecurity.shift.es2017.parser.token.TemplateToken Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.shapesecurity.shift.es2017.parser.token;

import com.shapesecurity.shift.es2017.parser.TokenType;
import com.shapesecurity.shift.es2017.parser.SourceRange;
import com.shapesecurity.shift.es2017.parser.Token;

import javax.annotation.Nonnull;

public final class TemplateToken extends Token {

    public final boolean tail;

    public TemplateToken(@Nonnull SourceRange slice, boolean tail) {
        super(TokenType.TEMPLATE, slice);
        this.tail = tail;
    }

    @Nonnull
    @Override
    public CharSequence getValueString() {
        return this.slice;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy