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

fun.fengwk.automapper.processor.parser.ast.Count Maven / Gradle / Ivy

package fun.fengwk.automapper.processor.parser.ast;

import fun.fengwk.automapper.processor.lexer.Token;

/**
 * @author fengwk
 */
public class Count extends ASTNode {

    public Count(Token lexeme) {
        super(lexeme);
    }

    @Override
    protected void accept(ASTVisitor visitor) {
        visitor.visit(this);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy