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

com.github.harbby.dsxparser.tree.Literal Maven / Gradle / Ivy

The newest version!
package com.github.harbby.dsxparser.tree;

import com.github.harbby.dsxparser.Optimizer;

import java.util.List;

public abstract class Literal extends Expression {
    protected Literal(NodeLocation location) {
        super(location);
    }

    @Override
    public List getChildren() {
        return List.of();
    }

    public final Expression visit(Optimizer optimizer) {
        return this;
    }

    public abstract String getValueAsString();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy