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

de.firemage.autograder.treeg.RegularExpression Maven / Gradle / Ivy

package de.firemage.autograder.treeg;

import de.firemage.autograder.treeg.ast.RegExNode;

public record RegularExpression(RegExNode root) {
    public String toRegEx() {
        return this.root.toRegEx();
    }

    public String toTree() {
        TreePrinter printer = new TreePrinter();
        this.root.toTree(printer);
        return printer.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy