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

de.prob.unicode.node.TBtrue Maven / Gradle / Ivy

There is a newer version: 2.13.4
Show newest version
/* This file was generated by SableCC (http://www.sablecc.org/). */

package de.prob.unicode.node;

import de.prob.unicode.analysis.Analysis;

public final class TBtrue extends Token
{
    public TBtrue(String text)
    {
        super(text);
    }

    public TBtrue(String text, int line, int pos)
    {
        super(text, line, pos);
    }

    @Override
    public TBtrue clone()
    {
        TBtrue cloned = new TBtrue(this.getText(), this.getLine(), this.getPos());
        cloned.initSourcePositionsFrom(this);
        return cloned;
    }

    @Override
    public void apply(Switch sw)
    {
        ((Analysis) sw).caseTBtrue(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy